diff --git a/.gitmodules b/.gitmodules
index b96fde972..f74b7f222 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,7 +1,7 @@
[submodule "public/help"]
path = public/help
url = https://github.com/rism-ch/muscat-guidelines.git
- branch = 3.6.8
+ branch = 3.6.10
ignore = dirty
[submodule "housekeeping/maintenance"]
path = housekeeping/maintenance
diff --git a/Gemfile b/Gemfile
index f21cd7509..5130b423e 100644
--- a/Gemfile
+++ b/Gemfile
@@ -119,7 +119,10 @@ gem 'colorize'
gem "rspec"
gem 'rspec-rails', '~> 3.5'
+gem 'factory_girl_rails'
gem 'poltergeist', "1.11.0"
+gem 'database_cleaner'
gem 'exception_notification'
gem 'cql-ruby', '0.9.1', :git => 'https://github.com/jrochkind/cql-ruby'
+gem 'chart-js-rails'
diff --git a/Gemfile.lock b/Gemfile.lock
index 739484203..51f78ed8b 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -134,6 +134,8 @@ GEM
rack (>= 1.0.0)
rack-test (>= 0.5.4)
xpath (~> 2.0)
+ chart-js-rails (0.1.2)
+ railties (> 3.1)
climate_control (0.0.3)
activesupport (>= 3.0)
cliver (0.3.2)
@@ -149,6 +151,7 @@ GEM
coffee-script-source (1.10.0)
colorize (0.8.1)
daemons (1.2.4)
+ database_cleaner (1.5.3)
debug_inspector (0.0.2)
delayed_job_active_record (4.1.1)
activerecord (>= 3.0, < 5.1)
@@ -169,6 +172,11 @@ GEM
actionmailer (>= 4.0, < 6)
activesupport (>= 4.0, < 6)
execjs (2.7.0)
+ factory_girl (4.8.0)
+ activesupport (>= 3.0.0)
+ factory_girl_rails (4.8.0)
+ factory_girl (~> 4.8.0)
+ railties (>= 3.0.0)
formtastic (3.1.4)
actionpack (>= 3.2.13)
formtastic_i18n (0.6.0)
@@ -372,16 +380,19 @@ DEPENDENCIES
blacklight_range_limit
bootstrap-sass (= 3.3.4.1)
cancan
+ chart-js-rails
coffee-rails (~> 4.0.0)
colorize
cql-ruby (= 0.9.1)!
crono!
daemons
+ database_cleaner
delayed_job (= 4.1.1)!
delayed_job_active_record
devise (~> 3.5.6)
devise-i18n
exception_notification
+ factory_girl_rails
htmlentities
i18n-js (>= 3.0.0.rc11)
jbuilder (~> 1.2)
@@ -411,3 +422,6 @@ DEPENDENCIES
uglifier (>= 1.3.0)
web-console (~> 2.0)
webrick (~> 1.3.1)
+
+BUNDLED WITH
+ 1.11.2
diff --git a/app/admin/person.rb b/app/admin/person.rb
index c2ce00194..0c5d30295 100644
--- a/app/admin/person.rb
+++ b/app/admin/person.rb
@@ -196,6 +196,11 @@ def new
render :partial => "activeadmin/section_sidebar_show", :locals => { :item => person }
end
+ sidebar :libraries, :only => :show do
+ render :partial => "people/library_pie"
+ end
+
+
##########
## Edit ##
diff --git a/app/admin/standard_title.rb b/app/admin/standard_title.rb
index 01f981e9f..e21d03826 100644
--- a/app/admin/standard_title.rb
+++ b/app/admin/standard_title.rb
@@ -1,3 +1,5 @@
+#include Triggers
+
ActiveAdmin.register StandardTitle do
menu :parent => "indexes_menu", :label => proc {I18n.t(:menu_titles)}
@@ -69,6 +71,11 @@ def update
success.html { redirect_to collection_path }
failure.html { redirect_to :back, flash: { :error => "#{I18n.t(:error_saving)}" } }
end
+
+ # Run the eventual triggers
+ ##POSTPONED to 3.6.11
+ ##execute_triggers_from_params(params, @standard_title)
+
end
# redirect create failure for preserving sidebars
@@ -153,9 +160,11 @@ def create
form do |f|
f.inputs do
- f.input :title, :label => (I18n.t :filter_title), :input_html => { :disabled => true }
+ f.input :title, :label => (I18n.t :filter_title), :input_html => { :disabled => true }
+ ## POSTPONED to 3.6.11
+ ## input_html: {data: {trigger: triggers_from_hash({save: ["referring_sources"]}) }}
f.input :latin, :label => (I18n.t :menu_latin)
- f.input :alternate_terms, :label => (I18n.t :filter_variants)
+ f.input :alternate_terms, :label => (I18n.t :filter_variants)
#f.input :typus, :label => (I18n.t :filter_record_type)
f.input :notes, :label => (I18n.t :filter_notes)
f.input :lock_version, :as => :hidden
diff --git a/app/admin/statistics.rb b/app/admin/statistics.rb
new file mode 100644
index 000000000..0cdcf8a57
--- /dev/null
+++ b/app/admin/statistics.rb
@@ -0,0 +1,88 @@
+ActiveAdmin.register_page "Statistics" do
+
+ # FIXME right management
+ menu :parent => "admin_menu", :label => "Statistics"
+
+ page_action :index, :method => :post do
+ redirect_to :action => :index
+ end
+
+ sidebar :search do
+ active_admin_form_for :search, :url => admin_statistics_index_path do |f|
+ f.input :from_date, :label => "From:", :as => :datepicker, :input_html => {:style => 'width: 90%' }
+ f.input :to_date, :label => "To:", :as => :datepicker, :input_html => {:style => 'width: 90%' }
+ div do
+ f.input :workgroup, :label => "Workgroup", :as => :select, :collection => Workgroup.order(:name), :input_html => {:style => 'width: 90%'}, :prompt => 'All'
+ end
+ f.actions
+ end
+ end
+
+ controller do
+ def index
+ if params['search'] && !(params['search']['from_date']).blank?
+ @from_date = (Time.parse(params['search']['from_date']).localtime)
+ else
+ @from_date = (Time.now-12.month).beginning_of_month
+ end
+ if params['search'] && !(params['search']['to_date']).blank?
+ @to_date = (Time.parse(params['search']['to_date']).localtime)
+ else
+ @to_date = Time.now
+ end
+ if params['search'] && !(params['search']['workgroup']).blank?
+ @workgroup = params['search']['workgroup']
+ else
+ @workgroup = nil
+ end
+ if !@workgroup
+ @att = :workgroup
+ users = User.where.not(:id => 1).joins(:workgroups).order('workgroups.name', :name)
+ else
+ @att = :name
+ users = User.where.not(:id => 1).joins(:workgroups).where('workgroups.id' => @workgroup).order('workgroups.name', :name)
+ end
+ stats = Statistics::User.sources_by_month(@from_date.beginning_of_month, @to_date, users)
+ @statistic = Statistics::Spreadsheet.new(stats)
+ end
+ end
+
+ content do
+ columns do
+ column do
+ panel "Chart", style: "width: 130%; margin-bottom: 20px" do
+ render :partial => 'statistics/chart'
+ end
+ end
+ column do
+ panel "Most active", style: "margin-left: auto; width: 60%" do
+ render :partial => 'statistics/workgroups_pie'
+ end
+ end
+ end
+
+ div do
+ tabs do
+ tab "User table" do
+ render :partial => 'statistics/user_table'
+ end
+ unless workgroup
+ tab "Workgroup table" do
+ render :partial => 'statistics/workgroup_table', :locals => {:from_date => from_date, :to_date => to_date }
+ end
+ end
+ end
+ end
+
+ div do
+ tabs do
+ tab "Sigla" do
+ render :partial => 'statistics/sigla_pie'
+ end
+ tab "Overall Publishing/Unpublishing" do
+ render :partial => 'statistics/status_bar'
+ end
+ end
+ end
+ end
+end
diff --git a/app/admin/user.rb b/app/admin/user.rb
index 355244c0d..03b42e1ad 100644
--- a/app/admin/user.rb
+++ b/app/admin/user.rb
@@ -28,6 +28,10 @@
user.get_roles.join(", ")
end
column :created_at
+ #column (I18n.t :filter_sources) do |user|
+ # user.sources_size_per_month(Time.now - 1.month, Time.now)
+ #end
+
column :active do |user|
user.active? ? status_tag( "yes", :ok ) : status_tag( "no" )
user.active?
diff --git a/app/assets/javascripts/active_admin.js.coffee b/app/assets/javascripts/active_admin.js.coffee
index 32a794b27..ab7f20105 100644
--- a/app/assets/javascripts/active_admin.js.coffee
+++ b/app/assets/javascripts/active_admin.js.coffee
@@ -45,3 +45,5 @@
#= require diva/diva.js
#= require diva/utils.js
+#= require Chart
+#= require html2csv.js
diff --git a/app/assets/javascripts/html2csv.js b/app/assets/javascripts/html2csv.js
index 3634efc5e..f808a92d0 100644
--- a/app/assets/javascripts/html2csv.js
+++ b/app/assets/javascripts/html2csv.js
@@ -2,7 +2,7 @@ $(document).ready(function() {
function exportTableToCSV($table, filename) {
- var $rows = $table.find('tr:has(td)'),
+ var $rows = $table.find('tr'),
// Temporary delimiter characters unlikely to be typed by keyboard
// This is to avoid accidentally splitting the actual contents
@@ -16,7 +16,7 @@ $(document).ready(function() {
// Grab text from table into CSV formatted string
csv = '"' + $rows.map(function(i, row) {
var $row = $(row),
- $cols = $row.find('td');
+ $cols = $row.children();
return $cols.map(function(j, col) {
var $col = $(col),
@@ -77,9 +77,10 @@ $(document).ready(function() {
}
// This must be a hyperlink
- $(".export").on('click', function(event) {
+ $(".csv_export").on('click', function(event) {
// CSV
- var args = [$('#dvData>table'), 'export.csv'];
+ var datatable = this.getAttribute('datatable');
+ var args = [$('#'+datatable+'>table'), datatable+'.csv'];
exportTableToCSV.apply(this, args);
diff --git a/app/assets/javascripts/new_window_select_ujs.js b/app/assets/javascripts/new_window_select_ujs.js
index b5b3407c5..5b56c81c9 100644
--- a/app/assets/javascripts/new_window_select_ujs.js
+++ b/app/assets/javascripts/new_window_select_ujs.js
@@ -33,7 +33,13 @@ function newWindowUpdateValue(id, label) {
var element_class = marc_editor_validate_className(_nw_destination.data("tag"), _nw_destination.data("subfield"));
_nw_destination.addClass(element_class);
// Write the data
- _nw_destination.val(id);
+ if (_nw_destination.data("has-links-to") == false) {
+ // Normal autocomplete writes the ID of the linked resource in the hidden
+ _nw_destination.val(id);
+ } else {
+ // links-to need the TEXT not the id
+ _nw_destination.val(label);
+ }
_nw_destination.data("status", "selected");
ac.removeClass("serialize_marc");
diff --git a/app/assets/javascripts/section_sidebar_ujs.js b/app/assets/javascripts/section_sidebar_ujs.js
index 8b3b57fb0..42489ea67 100644
--- a/app/assets/javascripts/section_sidebar_ujs.js
+++ b/app/assets/javascripts/section_sidebar_ujs.js
@@ -2,6 +2,16 @@ var init_sidebar_actions = function () {
$('a[data-save-form]').click(function(e) {
form = $("#" + $(this).data("save-form"));
+
+ // Triggers work as for marc editor:
+ // extract them, and pass them to the request form
+ triggers = marc_editor_get_triggers();
+ //Append them to the form as a hidden value
+ // this way we can use the same code we use in the marc ed
+ var $input = $(' ')
+ $input.val(JSON.stringify(triggers));
+ form.append($input);
+
form.submit();
});
diff --git a/app/assets/stylesheets/tabs.css b/app/assets/stylesheets/tabs.css
new file mode 100644
index 000000000..16d6a3260
--- /dev/null
+++ b/app/assets/stylesheets/tabs.css
@@ -0,0 +1,27 @@
+//This is only used in the statistics page for displaying multiple tables
+.ui-tabs .ui-tabs-panel {
+ border-width: 0;
+ padding: 1em 0em;
+ background-color: #e6e6e6;
+}
+.ui-tabs-nav li:first-child a {
+ border-top-left-radius: 0px;
+ border-bottom-left-radius: 0px;
+}
+
+.ui-tabs-nav li:last-child a {
+ border-top-right-radius: 0px;
+ border-bottom-right-radius: 0px;
+}
+.ui-widget-header {
+ border: 0px solid #aaaaaa;
+ color: #222222;
+ background: #e6e6e6;
+ font-weight: bold;
+
+}
+.ui-tabs-nav {
+ overflow: hidden;
+}
+
+
diff --git a/app/helpers/active_admin/views_helper.rb b/app/helpers/active_admin/views_helper.rb
index 106256618..f0ecc20c7 100644
--- a/app/helpers/active_admin/views_helper.rb
+++ b/app/helpers/active_admin/views_helper.rb
@@ -234,5 +234,5 @@ def local_sorting( codes, editor_profile )
end
return Hash[local_hash.sort_by{|k, v| v}].keys
end
-
+
end
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index 0765d7247..f6ef52a04 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -116,11 +116,22 @@ def get_allowed_record_type_775(source)
def self.to_sanitized_date(string)
return if string.blank?
if string =~ /[0-9]{4}\-[0-9]{2}\-[0-9]{2}/
- string.to_date
+ #string.to_date
+ d = DateTime.parse(string) rescue d = DateTime.now
+ return d
elsif string.size == 4
return DateTime.strptime(string, "%Y")
else
return DateTime.now
end
end
+
+ # Calculate the month distance between two dates for the statistics
+ def self.month_distance(from_date, to_date)
+ raise ArgumentError, "from date > to_date" if from_date > to_date
+ target = (to_date.year * 12 + to_date.month) - (Time.now.localtime.year * 12 + Time.now.localtime.month)
+ start = target + (from_date.year * 12 + from_date.month) - (to_date.year * 12 + to_date.month)
+ (start..target)
+ end
+
end
diff --git a/app/jobs/save_items_job.rb b/app/jobs/save_items_job.rb
index 5e210dddc..eb2a9087c 100644
--- a/app/jobs/save_items_job.rb
+++ b/app/jobs/save_items_job.rb
@@ -36,6 +36,11 @@ def perform
count += 1
end
+ update_stage("Reindexing parent")
+ # reindex the parent obj as needed
+ if @parent_obj.respond_to? :reindex
+ @parent_obj.reindex
+ end
end
diff --git a/app/models/ability.rb b/app/models/ability.rb
index ca4061dfe..739236793 100644
--- a/app/models/ability.rb
+++ b/app/models/ability.rb
@@ -31,6 +31,7 @@ def initialize(user)
can :read, ActiveAdmin::Page, :name => "Dashboard"
can :read, ActiveAdmin::Page, :name => "guidelines"
can :read, ActiveAdmin::Page, :name => "doc"
+ can :read, ActiveAdmin::Page, :name => "Statistics"
can [:read], User, :id => user.id
##############
diff --git a/app/models/catalogue.rb b/app/models/catalogue.rb
index dcaecea98..6d2d35a8a 100644
--- a/app/models/catalogue.rb
+++ b/app/models/catalogue.rb
@@ -68,6 +68,8 @@ class Catalogue < ActiveRecord::Base
attr_accessor :suppress_scaffold_marc_trigger
attr_accessor :suppress_recreate_trigger
+ alias_attribute :id_for_fulltext, :id
+
enum wf_stage: [ :inprogress, :published, :deleted ]
enum wf_audit: [ :basic, :minimal, :full ]
@@ -200,6 +202,10 @@ def reindex
searchable :auto_index => false do |sunspot_dsl|
sunspot_dsl.integer :id
+ sunspot_dsl.text :id_text do
+ id_for_fulltext
+ end
+
sunspot_dsl.string :name_order do
name
end
diff --git a/app/models/institution.rb b/app/models/institution.rb
index a34c259e2..21f79a52b 100644
--- a/app/models/institution.rb
+++ b/app/models/institution.rb
@@ -74,6 +74,8 @@ class Institution < ActiveRecord::Base
attr_accessor :suppress_recreate_trigger
attr_accessor :suppress_update_workgroups_trigger
+ alias_attribute :id_for_fulltext, :id
+
enum wf_stage: [ :inprogress, :published, :deleted ]
enum wf_audit: [ :basic, :minimal, :full ]
@@ -200,6 +202,10 @@ def reindex
searchable :auto_index => false do |sunspot_dsl|
sunspot_dsl.integer :id
+ sunspot_dsl.text :id_text do
+ id_for_fulltext
+ end
+
sunspot_dsl.string :siglum_order do
siglum
end
diff --git a/app/models/liturgical_feast.rb b/app/models/liturgical_feast.rb
index 51937aa9d..8ef3b49bb 100644
--- a/app/models/liturgical_feast.rb
+++ b/app/models/liturgical_feast.rb
@@ -27,7 +27,9 @@ class LiturgicalFeast < ActiveRecord::Base
after_save :reindex
attr_accessor :suppress_reindex_trigger
-
+
+ alias_attribute :id_for_fulltext, :id
+
enum wf_stage: [ :inprogress, :published, :deleted ]
enum wf_audit: [ :basic, :minimal, :full ]
@@ -43,6 +45,9 @@ def reindex
searchable :auto_index => false do
integer :id
+ text :id_text do
+ id_for_fulltext
+ end
string :name_order do
name
end
diff --git a/app/models/person.rb b/app/models/person.rb
index 4cb1ee584..0b94389b1 100644
--- a/app/models/person.rb
+++ b/app/models/person.rb
@@ -80,6 +80,8 @@ def user_name
attr_accessor :suppress_scaffold_marc_trigger
attr_accessor :suppress_recreate_trigger
+ alias_attribute :id_for_fulltext, :id
+
enum wf_stage: [ :inprogress, :published, :deleted ]
enum wf_audit: [ :basic, :minimal, :full ]
@@ -208,6 +210,9 @@ def reindex
searchable :auto_index => false do |sunspot_dsl|
sunspot_dsl.integer :id
+ sunspot_dsl.text :id_text do
+ id_for_fulltext
+ end
sunspot_dsl.string :full_name_order do
full_name
end
diff --git a/app/models/place.rb b/app/models/place.rb
index 2c95e8548..35e508fb1 100644
--- a/app/models/place.rb
+++ b/app/models/place.rb
@@ -32,6 +32,8 @@ class Place < ActiveRecord::Base
attr_accessor :suppress_reindex_trigger
+ alias_attribute :id_for_fulltext, :id
+
enum wf_stage: [ :inprogress, :published, :deleted ]
enum wf_audit: [ :basic, :minimal, :full ]
@@ -47,6 +49,9 @@ def reindex
searchable :auto_index => false do
integer :id
+ text :id_text do
+ id_for_fulltext
+ end
string :name_order do
name
end
diff --git a/app/models/standard_term.rb b/app/models/standard_term.rb
index f15222cc3..ad7061b98 100644
--- a/app/models/standard_term.rb
+++ b/app/models/standard_term.rb
@@ -28,7 +28,9 @@ class StandardTerm < ActiveRecord::Base
after_save :reindex
attr_accessor :suppress_reindex_trigger
-
+
+ alias_attribute :id_for_fulltext, :id
+
enum wf_stage: [ :inprogress, :published, :deleted ]
enum wf_audit: [ :basic, :minimal, :full ]
@@ -44,6 +46,9 @@ def reindex
searchable :auto_index => false do
integer :id
+ text :id_text do
+ id_for_fulltext
+ end
string :term_order do
term
end
diff --git a/app/models/standard_title.rb b/app/models/standard_title.rb
index b8a10406d..6d602c8ed 100644
--- a/app/models/standard_title.rb
+++ b/app/models/standard_title.rb
@@ -28,6 +28,7 @@ class StandardTitle < ActiveRecord::Base
attr_accessor :suppress_reindex_trigger
alias_attribute :name, :title
+ alias_attribute :id_for_fulltext, :id
enum wf_stage: [ :inprogress, :published, :deleted ]
enum wf_audit: [ :basic, :minimal, :full ]
@@ -44,6 +45,10 @@ def reindex
searchable :auto_index => false do
integer :id
+ text :id_text do
+ id_for_fulltext
+ end
+
string :title_order do
title
end
@@ -66,17 +71,17 @@ def reindex
:join => { :from => :item_id, :to => :id })
integer :src_count_order, :stored => true do
- tit = title
- s = Source.solr_search do
- any_of do
- with("031t_filter", tit)
- with("240a_filter", tit)
- with("730a_filter", tit)
- end
- end
- s.total
+ tit = title
+ s = Source.solr_search do
+ any_of do
+ with("031t_filter", tit)
+ with("240a_filter", tit)
+ with("730a_filter", tit)
+ end
+ end
+ s.total
#StandardTitle.count_by_sql("select count(*) from sources_to_standard_titles where standard_title_id = #{self[:id]}")
- end
+ end
end
def check_dependencies
diff --git a/app/models/user.rb b/app/models/user.rb
index 7827a1b83..adb0af80b 100644
--- a/app/models/user.rb
+++ b/app/models/user.rb
@@ -2,6 +2,7 @@ class User < ActiveRecord::Base
has_and_belongs_to_many :workgroups
attr_accessible :email, :password, :preference_wf_stage, :password_confirmation if Rails::VERSION::MAJOR < 4
+ has_many :sources, foreign_key: 'wf_owner'
# Connects this user object to Blacklights Bookmarks.
include Blacklight::User
rolify
@@ -11,6 +12,16 @@ class User < ActiveRecord::Base
:recoverable, :rememberable, :trackable, :validatable
enum preference_wf_stage: [ :inprogress, :published, :deleted ]
+ scope :ordered, -> {
+ joins(:workgroups).order("workgroup.name")
+
+ }
+
+ searchable :auto_index => false do
+ integer :id
+ text :name
+ end
+
def can_edit?(source)
if source.child_sources.count > 0
@@ -44,6 +55,10 @@ def get_workgroups
self.workgroups.map {|ins| ins.name}
end
+ def workgroup
+ get_workgroups.join(", ")
+ end
+
def get_roles
self.roles.map {|r| r.name}
end
@@ -54,6 +69,6 @@ def online?
def active?
return false unless last_sign_in_at
- last_sign_in_at > (DateTime.now - 4.weeks) ? true : false
+ last_sign_in_at > (DateTime.now - 12.weeks) ? true : false
end
end
diff --git a/app/models/workgroup.rb b/app/models/workgroup.rb
index 8b14d6c0b..af8c25e5c 100644
--- a/app/models/workgroup.rb
+++ b/app/models/workgroup.rb
@@ -5,12 +5,13 @@ class Workgroup < ActiveRecord::Base
after_save :change_institutions
validates_presence_of :name
before_destroy :check_dependencies
+ has_many :sources, :through => :users
- searchable :auto_index => false do
- integer :id
- text :name
- end
-
+ searchable :auto_index => false do
+ integer :id
+ text :name
+ end
+
def get_institutions
self.institutions.map {|lib| lib}
end
diff --git a/app/views/people/_library_pie.html.erb b/app/views/people/_library_pie.html.erb
new file mode 100644
index 000000000..6237f97bf
--- /dev/null
+++ b/app/views/people/_library_pie.html.erb
@@ -0,0 +1,44 @@
+<% s = Statistics::Person.libraries([@item]) %>
+<% pie = Statistics::Spreadsheet.new(s).to_chart rescue nil %>
+
+<% return 0 unless pie %>
+<% dta = {labels: pie.keys,
+ datasets: [ {
+ label: "Monthly",
+ fillColor: "rgba(220,220,220,0.2)",
+ hoverBackgroundColor: [
+ '#cc0000',
+ '#004d99',
+ '#cca300',
+ '#006622',
+ '#cc5200',
+ '#ff3377'
+
+ ],
+ backgroundColor: [
+ '#ff0000',
+ '#0066cc',
+ '#ffcc00',
+ '#009933',
+ '#ff6600',
+ '#ff6699'
+ ],
+ strokeColor: "#1B4E7D",
+ pointColor: "rgba(220,220,220,1)",
+ pointStrokeColor: "#fff",
+ pointHighlightFill: "#fff",
+ pointHighlightStroke: "rgba(220,220,220,1)",
+ data: pie.values}, ] }
+%>
+
+
<% if @model == 'sources' %>
@@ -54,7 +54,9 @@
<% end %>
+
<%= "Number of results: #{@result.total}" %>
-
Download as CSV/Excel
diff --git a/app/views/statistics/_chart.html.erb b/app/views/statistics/_chart.html.erb
new file mode 100644
index 000000000..342b5cf67
--- /dev/null
+++ b/app/views/statistics/_chart.html.erb
@@ -0,0 +1,25 @@
+<% chart = @statistic.to_chart %>
+<% dta = {labels: @statistic.header,
+ datasets: [ {
+ label: "Monthly",
+ fillColor: "rgba(220,220,220,0.2)",
+ borderWidth: "2",
+ borderColor: "#1B4E7D",
+
+
+ strokeColor: "#1B4E7D",
+ pointColor: "rgba(220,220,220,1)",
+ pointStrokeColor: "#fff",
+ pointHighlightFill: "#fff",
+ pointHighlightStroke: "rgba(220,220,220,1)",
+ data: chart.values}, ] }
+%>
+
+
+
+
+<%= javascript_tag do %>
+ var data = <%= dta.to_json.html_safe %>
+ var pie = new Chart($("#chart"), {type: 'line', data: data});
+<% end %>
+
diff --git a/app/views/statistics/_sigla_pie.html.erb b/app/views/statistics/_sigla_pie.html.erb
new file mode 100644
index 000000000..ef2b5c249
--- /dev/null
+++ b/app/views/statistics/_sigla_pie.html.erb
@@ -0,0 +1,61 @@
+<% if !@workgroup.blank? %>
+ <% sigla = Workgroup.where(:id => params['search']['workgroup']).take.institutions.where.not(:siglum => nil) %>
+ <% else %>
+ <% sigla = Institution.where.not(:siglum => nil) %>
+<%end%>
+<% s = Statistics::Institution.sources_per_date(@from_date, @to_date, sigla) %>
+<% f = Statistics::Spreadsheet.new(s)%>
+<% pie = f.to_pie(:siglum, :limit => 12) %>
+<% dta = {labels: pie.keys,
+ datasets: [ {
+ label: "Count of siglum between #{@from_date.localtime.strftime("%Y-%m")} - #{@to_date.localtime.strftime("%Y-%m")}",
+ fillColor: "rgba(220,220,220,0.2)",
+ backgroundColor: [
+ '#ff0000',
+ '#0066cc',
+ '#ffcc00',
+ '#009933',
+ '#ff6600',
+ '#ff6699',
+ '#33cc00',
+ '#4db8ff',
+ '#cc9966',
+ '#d11aff',
+ '#ffff1a',
+ '#85adad',
+ '#b6b6e2'
+ ],
+ hoverBackgroundColor: [
+ '#cc0000',
+ '#004d99',
+ '#cca300',
+ '#006622',
+ '#cc5200',
+ '#ff3377',
+ '#269900',
+ '#1aa3ff',
+ '#bf8040',
+ '#b800e6',
+ '#e6e600',
+ '#669999',
+ '#9898d6'
+ ],
+ strokeColor: "#1B4E7D",
+ pointColor: "rgba(220,220,220,1)",
+ pointStrokeColor: "#fff",
+ pointHighlightFill: "#fff",
+ pointHighlightStroke: "rgba(220,220,220,1)",
+ data: pie.values}, ] }
+%>
+
+
+
+
+<%= javascript_tag do %>
+ var data = <%= dta.to_json.html_safe %>
+ var pie = new Chart($("#sigla_pie"), {type: 'bar', data: data});
+<% end %>
+
+
+
+
diff --git a/app/views/statistics/_status_bar.html.erb b/app/views/statistics/_status_bar.html.erb
new file mode 100644
index 000000000..3c419c054
--- /dev/null
+++ b/app/views/statistics/_status_bar.html.erb
@@ -0,0 +1,49 @@
+<% s = Statistics::Source.sources_per_wf_stage(@from_date, @to_date) %>
+<% f = Statistics::Spreadsheet.new(s)%>
+<% res = {}
+ f.objects.each do |item|
+ res[item.object] = item.row.values
+ end
+%>
+
+<% dta = {labels: res.keys, datasets: []} %>
+<% dta[:datasets] <<
+ {
+ label: "Published",
+ backgroundColor: "blue",
+ data: res.values.map{|i| i[0]}
+ }
+ %>
+<% dta[:datasets] <<
+ {
+ label: "Unpublished",
+ backgroundColor: "red",
+ data: res.values.map{|i| i[1]}
+ }
+ %>
+
+
+
+
+<%= javascript_tag do %>
+ var data = <%= dta.to_json.html_safe %>
+ var pie = new Chart($("#status_bar"), {
+ type: 'bar',
+ data: data,
+ options: {
+ barValueSpacing: 20,
+ scales: {
+ yAxes: [{
+ ticks: {
+ min: 0,
+ }
+ }]
+ }
+ }
+
+ });
+<% end %>
+
+
+
+
diff --git a/app/views/statistics/_user_table.html.arb b/app/views/statistics/_user_table.html.arb
new file mode 100644
index 000000000..80d4fb97d
--- /dev/null
+++ b/app/views/statistics/_user_table.html.arb
@@ -0,0 +1,16 @@
+collection = statistic.to_table :attributes => [:id, :name, :email, :workgroup], :summarize => true
+
+div class: "srutable_wrapper" do
+ div id: "user_statistic", class: "srutable_scroll" do
+ table_for(collection[1..-1], class: "srutable") do |t|
+ collection[1].each_with_index do |e, index|
+ label = collection[0][index]
+ t.column(label) {|w| w[index]}
+ end
+ end
+ end
+end
+div class: "srutable_download" do
+ link_to("Download as CSV/Excel", "#", class: "csv_export", datatable: "user_statistic", style: "float: right;")
+end
+
diff --git a/app/views/statistics/_workgroup_table.html.arb b/app/views/statistics/_workgroup_table.html.arb
new file mode 100644
index 000000000..2fc9c7ab7
--- /dev/null
+++ b/app/views/statistics/_workgroup_table.html.arb
@@ -0,0 +1,20 @@
+workgroups = Statistics::Workgroup.sources_by_month(from_date, to_date, Workgroup.all.order(:name))
+stat = Statistics::Spreadsheet.new(workgroups)
+
+collection = stat.to_table :attributes => [:id,:name], :summarize => true
+
+div class: "srutable_wrapper" do
+ div id: "workgroup_statistic", class: "srutable_scroll" do
+ table_for(collection[1..-1], class: "srutable") do |t|
+ collection[1].each_with_index do |e, index|
+ label = collection[0][index]
+ t.column(label) {|w| w[index]}
+ end
+ end
+ end
+end
+
+div class: "srutable_download" do
+ link_to("Download as CSV/Excel", "#", class: "csv_export", datatable: "workgroup_statistic", style: "float: right;")
+end
+
diff --git a/app/views/statistics/_workgroups_pie.html.erb b/app/views/statistics/_workgroups_pie.html.erb
new file mode 100644
index 000000000..11533b077
--- /dev/null
+++ b/app/views/statistics/_workgroups_pie.html.erb
@@ -0,0 +1,41 @@
+<% pie = @statistic.to_pie(@att, :limit => 5) %>
+<% dta = {labels: pie.keys,
+ datasets: [ {
+ label: "Monthly",
+ fillColor: "rgba(220,220,220,0.2)",
+ hoverBackgroundColor: [
+ '#cc0000',
+ '#004d99',
+ '#cca300',
+ '#006622',
+ '#cc5200',
+ '#ff3377'
+
+ ],
+ backgroundColor: [
+ '#ff0000',
+ '#0066cc',
+ '#ffcc00',
+ '#009933',
+ '#ff6600',
+ '#ff6699'
+ ],
+ strokeColor: "#1B4E7D",
+ pointColor: "rgba(220,220,220,1)",
+ pointStrokeColor: "#fff",
+ pointHighlightFill: "#fff",
+ pointHighlightStroke: "rgba(220,220,220,1)",
+ data: pie.values}, ] }
+%>
+
+
+
+
+<%= javascript_tag do %>
+ var data = <%= dta.to_json.html_safe %>
+ var pie = new Chart($("#pie"), {type: 'pie', data: data});
+<% end %>
+
+
+
+
diff --git a/config/editor_profiles/default/configurations/InstitutionFormOptions.yml b/config/editor_profiles/default/configurations/InstitutionFormOptions.yml
index ba1b00902..6a48d346e 100644
--- a/config/editor_profiles/default/configurations/InstitutionFormOptions.yml
+++ b/config/editor_profiles/default/configurations/InstitutionFormOptions.yml
@@ -150,6 +150,7 @@
- "XD-US"
- "XD-UY"
- "XD-VE"
+ - "XB-VN"
"110":
layout:
fields:
diff --git a/config/editor_profiles/default/configurations/InstitutionLabels.yml b/config/editor_profiles/default/configurations/InstitutionLabels.yml
index aa63628e6..38c9fb7be 100644
--- a/config/editor_profiles/default/configurations/InstitutionLabels.yml
+++ b/config/editor_profiles/default/configurations/InstitutionLabels.yml
@@ -1186,6 +1186,12 @@ voc:
fr: "Venezuela, Bolivarian Republic of"
de: "Venezuela, Bolivarian Republic of"
en: "Venezuela, Bolivarian Republic of"
+"XB-VN":
+ label:
+ it: "Viet Nam"
+ fr: "Viet Nam"
+ de: "Viet Nam"
+ en: "Viet Nam"
"Library":
label:
it: "Biblioteca"
diff --git a/config/editor_profiles/default/configurations/SourceFormOptions.yml b/config/editor_profiles/default/configurations/SourceFormOptions.yml
index 69cb5d8ff..93e4bf2bf 100644
--- a/config/editor_profiles/default/configurations/SourceFormOptions.yml
+++ b/config/editor_profiles/default/configurations/SourceFormOptions.yml
@@ -247,6 +247,7 @@
- "swe"
- "tur"
- "ukr"
+ - "vie"
- "wel"
- "wen"
- "yid"
diff --git a/config/editor_profiles/default/configurations/SourceLabels.yml b/config/editor_profiles/default/configurations/SourceLabels.yml
index 6494fd48b..addc52ea3 100644
--- a/config/editor_profiles/default/configurations/SourceLabels.yml
+++ b/config/editor_profiles/default/configurations/SourceLabels.yml
@@ -2342,7 +2342,7 @@ por:
label:
it: Portoghese
fr: Portugais
- de: Portugisisch
+ de: Portugiesisch
en: Portuguese
roh:
label:
@@ -2440,6 +2440,12 @@ ukr:
FR: Ukrainien
de: Ukrainisch
en: Ukrainian
+vie:
+ label:
+ IT: Vietnamita
+ FR: Vietnamien
+ de: Vietnamesisch
+ en: Vietnamese
wel:
label:
IT: Gallese
diff --git a/config/initializers/statistics.rb b/config/initializers/statistics.rb
new file mode 100644
index 000000000..f1dec5cdf
--- /dev/null
+++ b/config/initializers/statistics.rb
@@ -0,0 +1,3 @@
+Dir["#{Rails.root}/lib/statistics/*.rb"].each do |file|
+ require file
+end
diff --git a/config/sru/service.config.yml b/config/sru/service.config.yml
index 1c5f97bb9..5f1f73f0e 100644
--- a/config/sru/service.config.yml
+++ b/config/sru/service.config.yml
@@ -10,6 +10,7 @@ schemas:
- mods
- dc
- html
+ - bibframe
sets:
cql: info:srw/cql-context-set/1/cql-v1.1
rec: info:srw/cql-context-set/2/rec-1.1
@@ -96,6 +97,12 @@ index:
rism.librarySiglum:
solr: 110g
type: text
+ rism.shelfmark:
+ solr: shelf_mark_shelforder
+ type: s
+ rism.furtherShelfmark:
+ solr: 591a
+ type: text
rism.changed:
solr: updated_at
type: d
@@ -105,7 +112,9 @@ index:
rism.wv:
solr: 690n
type: text
-
+ rism.scoring:
+ solr: 594b
+ type: sms
#bath.genreForm:
#title: genreForm
#solr: 001
diff --git a/db/schema.rb b/db/schema.rb
index 5e758e418..608cc85f2 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20160902073728) do
+ActiveRecord::Schema.define(version: 20170316142555) do
create_table "active_admin_comments", force: :cascade do |t|
t.string "namespace", limit: 255
@@ -513,6 +513,7 @@
add_index "sources", ["source_id"], name: "index_sources_on_source_id", using: :btree
add_index "sources", ["std_title"], name: "index_sources_on_std_title", length: {"std_title"=>255}, using: :btree
add_index "sources", ["std_title_d"], name: "index_sources_on_std_title_d", length: {"std_title_d"=>255}, using: :btree
+ add_index "sources", ["wf_owner"], name: "index_sources_on_wf_owner", using: :btree
add_index "sources", ["wf_stage"], name: "index_sources_on_wf_stage", using: :btree
create_table "sources_to_catalogues", id: false, force: :cascade do |t|
diff --git a/housekeeping/correct/21_033.rb b/housekeeping/correct/21_033.rb
new file mode 100644
index 000000000..2dbbfb4a6
--- /dev/null
+++ b/housekeeping/correct/21_033.rb
@@ -0,0 +1,133 @@
+def join_values(tag, subtag, marc)
+ values = []
+ marc.by_tags(tag).each do |t|
+ t.each_by_tag(subtag) do |st|
+ next if !st || !st.content
+ values << st.content
+ end
+ end
+ values
+end
+
+puts "id\tcatalog\txml\tedit\tdate\tsiglum\tuser\t518$a\t541$d\t260$c\t500$a\t245$a\t246$a"
+Source.find_in_batches do |batch|
+ batch.each do |s|
+
+ #next if s.source_id != nil
+
+ s.marc.load_source false
+ # IF none we do not care
+ next if s.marc.by_tags("033").count == 0
+
+ #puts "#{s.id}\t\t"
+
+ all_dates = []
+
+ s.marc.each_by_tag("033") do |t|
+
+ t.each_by_tag("a") do |t|
+ dates033 = []
+ next if !t || !t.content
+
+ # 033s can be like "12345678, 12345678)"
+ toks = t.content.split(",")
+ toks.each do |date_part|
+ dates = date_part.strip
+
+ if dates.length < 4
+ puts "error date len < 4 #{dates}, #{s.id}"
+ next
+ end
+
+ if dates.length >= 4 && dates.length < 12
+ year1 = dates[0, 4]
+ dates033 << year1 if year1.match(/^\d{4}$/)
+ end
+
+ if dates.length >=12
+ year1 = dates[0, 4]
+ dates033 << year1 if year1.match(/^\d{4}$/)
+
+ #puts dates.red
+ dates[8, dates.length - 1].split("-").each do |moredate|
+ #puts moredate.green
+ next if moredate == ""
+ next if moredate.length < 4
+ year2 = moredate[0, 4]
+ dates033 << year2 if year2.match(/^\d{4}$/)
+ #puts year2.yellow
+ end
+ end
+
+ end
+
+ #puts "#{t.content}\t#{dates033.join("\t")}" if dates033.count > 0
+ #puts "#{t.content}\tERROR" if dates033.count == 0
+
+ all_dates.concat(dates033)
+
+ end
+ end
+
+ if all_dates.count == 0
+ puts "#{s.id}\tNOT PARSABLE"
+ next
+ end
+
+ # Search in the marc record
+ m = s.marc
+ m.by_tags("033").each {|t| t.destroy_yourself}
+
+ user = s.user != nil ? s.user.name : "not set"
+
+ a = []
+ a << join_values("518", "a", m)
+ a << join_values("541", "d", m)
+ a << join_values("260", "c", m)
+ a << join_values("500", "a", m)
+ a << join_values("245", "a", m)
+ a << join_values("246", "a", m)
+
+ marc_s = m.to_marc
+ puts "MAMME" if marc_s == nil
+
+ all_dates.each do |d|
+ found = marc_s.include?(d)
+ if !found
+ #ap a
+ link_catalog = "http://admin.rism-ch.org/catalog/#{s.id}"
+ link_admin = "http://admin.rism-ch.org/admin/sources/#{s.id}.xml"
+ link_edit = "http://admin.rism-ch.org/admin/sources/#{s.id}/edit"
+ print "#{s.id}\t#{link_catalog}\t#{link_admin}\t#{link_edit}\t#{d}\t#{s.lib_siglum}\t#{user}"
+
+ run = true
+ count = 0
+ while run == true
+
+ print "\t" + (a[0].count-1 >= count ? a[0][count] : "x1")
+ print "\t" + (a[1].count-1 >= count ? a[1][count] : "x2")
+ print "\t" + (a[2].count-1 >= count ? a[2][count] : "x3")
+ print "\t" + (a[3].count-1 >= count ? a[3][count] : "x4")
+ print "\t" + (a[4].count-1 >= count ? a[4][count] : "x5")
+ print "\t" + (a[5].count-1 >= count ? a[5][count] : "x6")
+
+ #ap a[4][0]
+ #ap count
+ puts
+ count += 1
+
+ run = false if (count > a[0].count-1 && count > a[1].count-1 &&
+ count > a[2].count-1 && count > a[3].count-1 &&
+ count > a[4].count-1 && count > a[5].count-1)
+
+ print "\t\t\t\t\t"
+
+ end
+
+ puts
+
+ end
+ end
+
+ end
+end
\ No newline at end of file
diff --git a/housekeeping/import/import_from_marc.rb b/housekeeping/import/import_from_marc.rb
index 6a5de31c5..8dca7c64e 100644
--- a/housekeeping/import/import_from_marc.rb
+++ b/housekeeping/import/import_from_marc.rb
@@ -7,7 +7,6 @@
Institution.paper_trail.disable
Person.paper_trail.disable
Source.paper_trail.disable
-
if ARGV.length >= 2
source_file = ARGV[0]
model = ARGV[1]
diff --git a/housekeeping/maintenance b/housekeeping/maintenance
index ef26aca98..69e54efe1 160000
--- a/housekeeping/maintenance
+++ b/housekeeping/maintenance
@@ -1 +1 @@
-Subproject commit ef26aca98d35260ba7c30e1be8c020c1b487da34
+Subproject commit 69e54efe106ec4b93872b6e8903fd94195c835bb
diff --git a/housekeeping/upgrade_3.5/001_add_record_type.rb b/housekeeping/upgrade_3.5/001_add_record_type.rb
deleted file mode 100644
index 411541797..000000000
--- a/housekeeping/upgrade_3.5/001_add_record_type.rb
+++ /dev/null
@@ -1,183 +0,0 @@
-require 'progress_bar'
-
-pb = ProgressBar.new(Source.all.count)
-
-Source.all.each do |sa|
-
- s = Source.find(sa.id)
-
- marc = s.marc
- marc.load_source(false)
-
- # convert to intergal marc
- marc.to_internal
- rt = marc.record_type
- if (rt)
- s.record_type = rt
- else
- "Empty record type for #{s.id}"
- end
-
- #204 Move 300 $b to 500
- marc.each_by_tag("300") do |t|
- t8 = t.fetch_first_by_tag("8")
- tb = t.fetch_first_by_tag("b")
-
- next if !(t8 && t8.content) || !(tb && tb.content)
-
- new_500 = MarcNode.new("source", "500", "", "##")
- new_500.add_at(MarcNode.new("source", "a", tb.content, nil), 0)
- new_500.add_at(MarcNode.new("source", "8", t8.content, nil), 1)
- new_500.sort_alphabetically
-
- marc.root.children.insert(marc.get_insert_position("500"), new_500)
-
- #adios
- tb.destroy_yourself
- end
-
- #339 Migrate 240 $n to 383 $b
- marc.each_by_tag("240") do |t|
- tn = t.fetch_first_by_tag("n")
-
- next if !(tn && tn.content)
-
- new_383 = MarcNode.new("source", "383", "", "##")
- new_383.add_at(MarcNode.new("source", "b", tn.content, nil), 0)
- new_383.sort_alphabetically
-
- marc.root.children.insert(marc.get_insert_position("383"), new_383)
-
- #adios
- tn.destroy_yourself
- end
-
- all300 = marc.root.fetch_all_by_tag("300")
- all300.each do |t|
- if t.all_children.count == 1
- puts "Removed 300 with ony $8: #{s.id}"
- t.destroy_yourself
- end
- end
-
- #191 Remove 730 $r $n $m
- marc.each_by_tag("730") do |t|
- t.fetch_all_by_tag("r").each {|st| st.destroy_yourself}
- t.fetch_all_by_tag("n").each {|st| st.destroy_yourself}
- t.fetch_all_by_tag("m").each {|st| st.destroy_yourself}
- end
-
- #198 Remove 110 for collections
- if s.record_type == MarcSource::RECORD_TYPES[:collection] || MarcSource::RECORD_TYPES[:convolutum]
- marc.each_by_tag("110") {|t| t.destroy_yourself}
- end
-
- #202 Map 100 $j and 700 $j
- marc.each_by_tag("100") do |t|
- tj = t.fetch_first_by_tag("j")
-
- if tj && tj.content && tj.content == "Attributed to"
- tj.destroy_yourself #adios
- t.add_at(MarcNode.new("source", "j", "Doubtful", nil), 0)
- t.sort_alphabetically
- end
- end
-
- # Migrate 852 $0 to $x
- marc.each_by_tag("852") do |t|
- t0 = t.fetch_first_by_tag("0")
-
- if !(t0 && t0.content)
- puts "WARN: 852 without $0 #{s.id}"
- next
- end
-
- t.add_at(MarcNode.new("source", "x", t0.content, nil), 0)
- t.sort_alphabetically
-
- #adios
- t0.destroy_yourself
- end
-
- #193 Migrate 505 to 520
- marc.each_by_tag("505") do |t|
- ta = t.fetch_first_by_tag("a")
-
- next if !(ta && ta.content)
-
- new_520 = MarcNode.new("source", "520", "", "##")
- new_520.add_at(MarcNode.new("source", "a", ta.content, nil), 0)
- new_520.sort_alphabetically
-
- marc.root.children.insert(marc.get_insert_position("500"), new_520)
-
- #adios
- t.destroy_yourself
- end
-
- # Drop $2pe in 031, see #194
- marc.each_by_tag("031") do |t|
- st = t.fetch_first_by_tag("2")
- if st && st.content && st.content != "pe"
- puts "Unknown 031 $2 value: #{st.content}"
- end
- st.destroy_yourself if st
- end
-
-
- # #207 Move 563 to 500
- # FIXME see #351
-=begin
- marc.each_by_tag("563") do |t|
-
- node = t.deep_copy
- node.tag = "500"
- node.indicator = "##"
- node.sort_alphabetically
- marc.root.children.insert(marc.get_insert_position("500"), node)
-
- t.destroy_yourself
- end
-=end
-
- # #351 - instead of @207
- # Set them to the material group 01
- # It will have a special table to override where necessary
- marc.each_by_tag("563") do |t|
- t.add_at(MarcNode.new("source", "8", "01", nil), 0)
- t.sort_alphabetically
- end
-
- # #192 move 594 to 598
- marc.each_by_tag("594") do |t|
-
- node = t.deep_copy
- node.tag = "598"
- node.indicator = "##"
- node.sort_alphabetically
- marc.root.children.insert(marc.get_insert_position("598"), node)
-
- t.destroy_yourself
- end
-
- # #208, drop 600
- marc.each_by_tag("600") {|t| t.destroy_yourself}
-
- s.suppress_update_77x
- s.suppress_update_count
- s.suppress_reindex
-
- new_marc_txt = marc.to_marc
- new_marc = MarcSource.new(new_marc_txt, s.record_type)
- s.marc = new_marc
- #puts new_marc
-
- #begin
- s.save
- #rescue => e
- #puts e.message
- #end
-
- pb.increment!
-
-end
\ No newline at end of file
diff --git a/housekeeping/upgrade_3.5/001_update_old_versions.rb b/housekeeping/upgrade_3.5/001_update_old_versions.rb
new file mode 100644
index 000000000..56e36ea30
--- /dev/null
+++ b/housekeeping/upgrade_3.5/001_update_old_versions.rb
@@ -0,0 +1,35 @@
+require 'progress_bar'
+
+versions = PaperTrail::Version.all
+
+pb = ProgressBar.new(versions.count)
+
+versions.each do |v|
+
+ # execute("UPDATE #{model.to_s} SET wf_stage = 1 where wf_stage = 'published' ")
+ # execute("UPDATE #{model.to_s} SET wf_stage = 0 where wf_stage = 'unpublished' ")
+ # execute("UPDATE #{model.to_s} SET wf_stage = 2 where wf_stage = 'deleted' ")
+
+ object = YAML::load(v.object)
+
+ if object.has_key?("wf_stage")
+ if object["wf_stage"] == "published"
+ object["wf_stage"] = 1
+ elsif object["wf_stage"] == "unpublished"
+ object["wf_stage"] = 0
+ elsif object["wf_stage"] == "deleted"
+ object["wf_stage"] = 2
+ else
+ puts "Unknown wf_stage #{object["wf_stage"]} #{object["id"]}"
+ object["wf_stage"] = 0
+ end
+ end
+
+ object["wf_audit"] = 0 if object.has_key?("wf_audit")
+
+ v.object = object.to_yaml
+
+ v.save
+
+ pb.increment!
+end
\ No newline at end of file
diff --git a/housekeeping/upgrade_3.5/002_add_record_type.rb b/housekeeping/upgrade_3.5/002_add_record_type.rb
new file mode 100644
index 000000000..7e16e4d6d
--- /dev/null
+++ b/housekeeping/upgrade_3.5/002_add_record_type.rb
@@ -0,0 +1,480 @@
+require 'progress_bar'
+
+def parse_240n(s)
+ catalog = ""
+ opus = ""
+
+ if s.downcase.include?("op.")
+ if s.downcase.start_with?("op")
+ # we have only an opus nr
+ opus = s.strip
+ else
+ # try to split it
+ if s.downcase.include?(",")
+ parts = s.split(",")
+ if parts.count == 2
+
+ if parts[1].downcase.include?("op.")
+ # Assume part 0 is the catalogue
+ catalog = parts[0].strip
+ opus = parts[1].strip
+ else
+ $stderr.puts "OP not in part 1 #{s}"
+ end
+
+ else
+ $stderr. puts "Too many \",\": #{s}"
+ end
+ else
+ $stderr.puts "String contains op, but not after comma: #{s}"
+ end
+ end
+
+ else
+ catalog = s.strip
+ end
+
+ #puts "#{s.strip} \t #{opus} \t #{catalog}"
+
+ return opus
+end
+
+def split_033_code(code, subcode)
+ #migrate the 033
+ t = code.split("\n")
+ line = nil
+ for i in 0..t.count - 1
+ line = t[i] if t[i].include?(subcode)
+ end
+ if line == nil
+ puts "033 cannot parse: #{code}"
+ return false, false
+ end
+ toks = line.split(" ")
+ if toks.length < 2
+ puts "033-2 cannot parse: #{code}"
+ return false, false
+ end
+
+ return toks[1][0, 3], toks[1][3, 1]
+end
+
+def migrate033(tag, code, date, s)
+ return if code.include?("?")
+ return if !code
+
+ if code == "d"
+ #tag.destroy_yourself
+ puts "#{s.id} 033 destroy on d, #{tag.to_s.strip}, #{date}"
+ elsif code.include?("[]")
+ #tag.destroy_yourself
+ puts "#{s.id} 033 destroy on [], #{tag.to_s.strip}, #{date}"
+
+ elsif code.include?("mig")
+ a, b = split_033_code(code, "mig")
+ return if !a
+
+ # Move it to the selected tag
+ ###
+
+ elsif code.include?("cd")
+ # Copy the date in () to 033
+ # do the matchy-matchy
+ m = code.match(/\((\d{4})\)$/)
+ puts "Cannot parse #{code}" if !m
+ return if !m
+ date = m[1]
+ # Kill the old 033
+# ###marc.by_tags("033").each {|t| t.destroy_yourself}
+ # Make the new one
+ # set it as single date
+# new_033 = MarcNode.new("source", "033", "", "0#")
+# new_033.add_at(MarcNode.new("source", "a", "#{date}----", nil), 0)
+# new_033.sort_alphabetically
+
+# marc.root.children.insert(marc.get_insert_position("033"), new_033)
+ elsif code.include?("ny")
+ #tag.destroy_yourself
+ puts "#{s.id} 033 destroy on ny, #{tag.to_s.strip}, #{date}"
+
+ end
+
+end
+
+pb = ProgressBar.new(Source.all.count)
+
+preserve508 = YAML::load(File.read("housekeeping/upgrade_3.5/508_conversion.yml"))
+move505 = YAML::load(File.read("housekeeping/upgrade_3.5/505-520_conversion.yml"))
+
+substitute031r = YAML::load(File.read("housekeeping/upgrade_3.5/031r.yml"))
+substitute240r = YAML::load(File.read("housekeeping/upgrade_3.5/240r.yml"))
+
+move852d = YAML::load(File.read("housekeeping/upgrade_3.5/852d.yml"))
+
+convert033 = YAML::load(File.read("housekeeping/upgrade_3.5/033.yml"))
+
+Source.all.each do |sa|
+
+### next if !convert033.has_key?(sa.id.to_s)
+
+ s = Source.find(sa.id)
+ s.paper_trail_event = "system upgrade"
+
+ marc = s.marc
+ marc.load_source(false)
+
+ # convert to intergal marc
+ # DO THIS AT THE END!
+# marc.to_internal
+# rt = marc.record_type
+ rt = marc.match_leader
+ if (rt)
+ s.record_type = rt
+ else
+ "Empty record type for #{s.id}"
+ end
+
+ #401 - First and frontmost, migrate 033
+
+ if convert033.has_key?(s.id.to_s) && convert033[s.id.to_s][1] != "NOT PARSABLE"
+ found = false
+ marc.by_tags("033").each do |t|
+ t.fetch_all_by_tag("a").each do |ta|
+ next if !ta || !ta.content
+
+ next if ta.content[0, 4] != convert033[s.id.to_s][1]
+
+ migrate033(t, convert033[s.id.to_s][0], convert033[s.id.to_s][1], s)
+ found = true
+ end
+ end
+
+ puts "#{s.id} - could not match 033 in table #{convert033[s.id.to_s][1]}" if !found
+
+ end
+
+
+ #204 Move 300 $b to 500
+ marc.by_tags("300").each do |t|
+ t8 = t.fetch_first_by_tag("8")
+ tb = t.fetch_first_by_tag("b")
+
+ next if !(t8 && t8.content) || !(tb && tb.content)
+
+ new_500 = MarcNode.new("source", "500", "", "##")
+ new_500.add_at(MarcNode.new("source", "a", tb.content, nil), 0)
+ new_500.add_at(MarcNode.new("source", "8", t8.content, nil), 1)
+ new_500.sort_alphabetically
+
+ marc.root.children.insert(marc.get_insert_position("500"), new_500)
+
+ #adios
+ tb.destroy_yourself
+ end
+
+ #339 Migrate 240 $n to 383 $b
+ # NOTE EXPERIMENTAL: automatically parse
+ marc.by_tags("240").each do |t|
+
+ # Normalize the $r
+ st = t.fetch_first_by_tag("r")
+ if st && st.content
+ if substitute240r.has_key? st.content.strip
+ if substitute240r[st.content.strip] != nil
+ st.content = substitute240r[st.content.strip]
+ else
+ # If is the table it is nil drop it
+ puts "240 dropped #{st.content}"
+ st.destroy_yourself
+ end
+ end
+ end
+
+ # Do the magic in the $n
+ tn = t.fetch_first_by_tag("n")
+
+ next if !(tn && tn.content)
+
+ opus = parse_240n(tn.content)
+ if !opus.empty?
+ new_383 = MarcNode.new("source", "383", "", "##")
+ new_383.add_at(MarcNode.new("source", "b", opus, nil), 0)
+ new_383.sort_alphabetically
+
+ marc.root.children.insert(marc.get_insert_position("383"), new_383)
+ end
+
+ #adios
+ tn.destroy_yourself
+ end
+
+ all300 = marc.root.fetch_all_by_tag("300")
+ all300.each do |t|
+ if t.all_children.count == 1
+ puts "Removed 300 with ony $8: #{s.id}"
+ t.destroy_yourself
+ end
+ end
+
+ #191 Remove 730 $r $n $m
+ marc.by_tags("730").each do |t|
+ t.fetch_all_by_tag("r").each {|st| st.destroy_yourself}
+ t.fetch_all_by_tag("n").each {|st| st.destroy_yourself}
+ t.fetch_all_by_tag("m").each {|st| st.destroy_yourself}
+ end
+
+ #198 Remove 110 for collections
+ if s.record_type == MarcSource::RECORD_TYPES[:collection] || MarcSource::RECORD_TYPES[:convolutum]
+ marc.by_tags("110").each {|t| t.destroy_yourself}
+ end
+
+ #202 Map 100 $j and 700 $j
+ marc.by_tags("100").each do |t|
+ tj = t.fetch_first_by_tag("j")
+
+ if tj && tj.content && tj.content == "Attributed to"
+ tj.destroy_yourself #adios
+ t.add_at(MarcNode.new("source", "j", "Doubtful", nil), 0)
+ t.sort_alphabetically
+ end
+ end
+
+ # #195 Migrate 852 $d
+ # Migrate 852 $0 to $x
+ marc.by_tags("852").each do |t|
+
+ # Step 1) migrate the 852 $2
+ # #195
+ if move852d.has_key?(s.id.to_s) # Only if in the list
+ #puts "found #{s.id}".blue
+ td = t.fetch_all_by_tag("d").each do |td|
+ if td && td.content
+ table = move852d[s.id.to_s]
+ #puts "#{td.content}~~~~#{table[:text]}".green
+ # Matches the content.
+ if table[:text].strip.downcase == td.content.strip.downcase
+ #puts "yeah".red
+ transform = table[:transform] != nil ? table[:transform] : td.content
+ #What shall we do?
+ if table[:tag] == "852$d"
+ #leave it alone
+ elsif table[:tag] == "852$z"
+ # move it to $z, then drop it
+ t.add_at(MarcNode.new("source", "z", transform, nil), 0)
+ t.sort_alphabetically
+ td.destroy_yourself
+ #puts "Moved 852 $d to $z"
+ elsif table[:tag] == "541$e"
+ #move it to 541, but check if it is there
+ if marc.by_tags("541").count == 0
+ new_541 = MarcNode.new("source", "541", "", "1#")
+ #puts "Created 541"
+ else
+ new_541 = marc.by_tags("541")[0]
+ #puts "Found 541"
+ end
+ new_541.add_at(MarcNode.new("source", "e", transform, nil), 0)
+ new_541.sort_alphabetically
+ #add it only if not there
+ marc.root.children.insert(marc.get_insert_position("541"), new_541) if marc.by_tags("541").count == 0
+ td.destroy_yourself
+ else
+ puts "Unknown #{table[:tag]}"
+ end #if table[:tag]
+ end #if table[:text]
+
+ end # if td
+ end # each
+ end # if move852d.has_key
+
+ # Step 2) migrate the 852 $0
+ # This is another old ticket
+ t0 = t.fetch_first_by_tag("0")
+
+ if !(t0 && t0.content)
+ puts "WARN: 852 without $0 #{s.id}"
+ next
+ end
+
+ t.add_at(MarcNode.new("source", "x", t0.content, nil), 0)
+ t.sort_alphabetically
+
+ #adios
+ t0.destroy_yourself
+ end
+
+ #193 Migrate 505 to 520
+ marc.by_tags("505").each do |t|
+ ta = t.fetch_first_by_tag("a")
+
+ next if !(ta && ta.content)
+
+ next if !move505.include?(ta.content)
+ #puts "#{s.id} moved 505"
+
+ new_520 = MarcNode.new("source", "520", "", "##")
+ new_520.add_at(MarcNode.new("source", "a", ta.content, nil), 0)
+ new_520.sort_alphabetically
+
+ marc.root.children.insert(marc.get_insert_position("520"), new_520)
+
+ #adios
+ t.destroy_yourself
+ end
+
+ # #351 - instead of @207
+ # Set them to the material group 01
+ # It will have a special table to override where necessary
+ marc.by_tags("563").each do |t|
+ t.add_at(MarcNode.new("source", "8", "01", nil), 0)
+ t.sort_alphabetically
+ end
+
+ # #192 move 594 to 598
+ marc.by_tags("594").each do |t|
+
+ node = t.deep_copy
+ node.tag = "598"
+ node.indicator = "##"
+ node.sort_alphabetically
+ marc.root.children.insert(marc.get_insert_position("598"), node)
+
+ t.destroy_yourself
+ end
+
+ # 359 - move or delete, 508
+ if preserve508.has_key?(s.id)
+ # Item in the preserve list. Whould 508 be kept?
+ content = preserve508[s.id]
+ marc.by_tags("508").each do |t|
+ tn = t.fetch_first_by_tag("a")
+ if content.include?(tn.content)
+ # In the list, preserve it
+ node = t.deep_copy
+ node.tag = "500"
+ node.indicator = "##"
+ node.sort_alphabetically
+ marc.root.children.insert(marc.get_insert_position("500"), node)
+ end
+ # Drop the 508
+ t.destroy_yourself
+ end
+ else
+ # Item not in the preserve list. Kill all 508
+ marc.by_tags("508").each {|t| t.destroy_yourself}
+ end
+
+ #398 Migrate 653 to 595
+ # Save, for convenience, the contents of 595
+ marc.by_tags("653").each do |t|
+ ta = t.fetch_first_by_tag("a")
+
+ next if !(ta && ta.content)
+
+ new_595 = MarcNode.new("source", "595", "", "##")
+ # 1) 653 $a should go to 595 $u as it is
+ new_595.add_at(MarcNode.new("source", "u", ta.content, nil), 0)
+
+ # 2) 653 $a also to 595 $a but without information in parenthesis (voice)
+ parts = ta.split("(")
+ if parts.count > 0 # it contains a (
+ # We preserve the fist part
+ new_595.add_at(MarcNode.new("source", "a", parts[0].strip, nil), 0)
+ end
+
+ new_595.sort_alphabetically
+
+ marc.root.children.insert(marc.get_insert_position("595"), new_595)
+
+ #adios
+ t.destroy_yourself
+ end
+
+ # Drop $2pe in 031, see #194
+ #398 migrate 031 $e to 595, without diplicates
+ marc.by_tags("031").each do |t|
+ # First, drop the $2
+ st = t.fetch_first_by_tag("2")
+ if st && st.content && st.content != "pe"
+ puts "Unknown 031 $2 value: #{st.content}"
+ end
+ st.destroy_yourself if st
+
+ # Normalize the $r
+ st = t.fetch_first_by_tag("r")
+ if st && st.content
+ if substitute031r.has_key? st.content
+ if substitute031r[st.content] != nil
+ st.content = substitute031r[st.content]
+ else
+ # If is the table it is nil drop it
+ puts "031 dropped #{st.content}"
+ st.destroy_yourself
+ end
+ end
+ end
+
+ # Now take care of the $e
+ # duplicate 031$e to 595 $a (delete double entries)
+ se = t.fetch_first_by_tag("e")
+ next if !(se && se.content)
+ found = false
+ # Go though the 595. We could already have had some
+ marc.by_tags("595").each do |t595|
+ sa = t595.fetch_first_by_tag("a")
+ next if !(sa && sa.content)
+ if sa.content == se.content
+ found = true
+ break
+ end
+ end
+
+ # No duplicate, create new with the content of 031 $e
+ if !found
+ new_595 = MarcNode.new("source", "595", "", "##")
+ new_595.add_at(MarcNode.new("source", "a", se.content, nil), 0)
+ new_595.sort_alphabetically
+ marc.root.children.insert(marc.get_insert_position("595"), new_595)
+ end
+ ## NOTE 031 $e is DUPCATE and NOT deleted
+
+ end
+
+ # Move the / to | in 245
+ s.marc.each_by_tag("245") do |t|
+ t.each_by_tag("a") do |tn|
+
+ next if !(tn && tn.content)
+ next if !tn.content.include?("/")
+
+ tn.content = tn.content.gsub(" / ", " | ")
+
+ #$stderr.puts "Check 245$a #{s.id}: #{tn.content}" if tn.content.include?("/")
+ end
+ end
+
+
+ # #208, drop 600
+ marc.by_tags("600").each {|t| t.destroy_yourself}
+
+ s.suppress_update_77x
+ s.suppress_update_count
+ s.suppress_reindex
+
+ # Convert marc to the internal format
+ marc.to_internal
+
+ new_marc_txt = marc.to_marc
+ new_marc = MarcSource.new(new_marc_txt, s.record_type)
+ s.marc = new_marc
+ #puts new_marc
+
+ #begin
+ s.save
+ #rescue => e
+ #puts e.message
+ #end
+
+ pb.increment!
+
+end
diff --git a/housekeeping/upgrade_3.5/031r.yml b/housekeeping/upgrade_3.5/031r.yml
new file mode 100644
index 000000000..4182a3440
--- /dev/null
+++ b/housekeeping/upgrade_3.5/031r.yml
@@ -0,0 +1,67 @@
+---
+" c": c
+'1':
+10t: 10t
+11t: 11t
+12t: 12t
+1t: 1t
+2/4:
+2t: 2t
+3/4:
+3t: 3t
+4t: 4t
+5t: 5t
+6t: 6t
+7t: 7t
+8t: 8t
+9t: 9t
+A: A
+Ab: A|b
+B: B
+Bb: B|b
+B|b: B|b
+C: C
+C -: C
+C#: C|x
+C-1:
+Cb: C|b
+Cx: C|x
+D: D
+D#: D|x
+Db: D|b
+E: E
+Eb: E|b
+E|b: E|b
+F: F
+F#: F|x
+Fb:
+Fx: F|x
+G: G
+G#: G|x
+Gb: G|b
+H: B
+Hôte du diable quelle tièdeur:
+S:
+a: a
+a#: a|x
+ab: a|b
+b: b
+bE: E|b
+bb: b|b
+c: c
+c#: c|x
+cx: c|x
+d: d
+d#: d|x
+e: e
+eb: e|b
+f: f
+f#: F|x
+fx: F|x
+g: g
+g -: g
+g / G:
+g#: g|x
+gb: g|b
+gx: g|x
+h: b
diff --git a/housekeeping/upgrade_3.5/033.yml b/housekeeping/upgrade_3.5/033.yml
new file mode 100644
index 000000000..2f5d82e0b
--- /dev/null
+++ b/housekeeping/upgrade_3.5/033.yml
@@ -0,0 +1,2292 @@
+---
+id:
+- Code
+- date
+'400014685':
+- "?"
+- '1904'
+'400150247':
+- "?"
+- '1942'
+'400173607':
+- se
+- '1782'
+'400173644':
+- se
+- '1782'
+'402004572':
+- se
+- '1891'
+'402004573':
+- se
+- '1891'
+'402004574':
+- se
+- '1891'
+'402004575':
+- se
+- '1891'
+'402004576':
+- se
+- '1891'
+'402004577':
+- se
+- '1891'
+'402004578':
+- se
+- '1891'
+'402004579':
+- se
+- '1891'
+'402004580':
+- se
+- '1891'
+'402004581':
+- se
+- '1891'
+'402005557':
+- "?"
+- '1886'
+'402005581':
+- "?"
+- '1891'
+'402009667':
+- |-
+ nos
+ 1st perf.
+- '1922'
+'402009967':
+- "? YP"
+- '1779'
+'402009968':
+- "? YP"
+- '1857'
+'402010013':
+- "? YP"
+- '1886'
+'402010014':
+- "? YP"
+- '1886'
+'402010015':
+- "? YP"
+- '1886'
+'402010016':
+- "? YP"
+- '1886'
+'402010017':
+- "? YP"
+- '1886'
+'402010018':
+- "? YP"
+- '1886'
+'402010019':
+- "? YP"
+- '1886'
+'402010020':
+- "? YP"
+- '1886'
+'402010021':
+- "? YP"
+- '1886'
+'402010022':
+- "? YP"
+- '1886'
+'402010023':
+- "? YP"
+- '1886'
+'402010024':
+- "? YP"
+- '1886'
+'402010025':
+- "? YP"
+- '1886'
+'402010875':
+- incpl.
+- '1909'
+'402010876':
+- incpl.
+- '1909'
+'402010877':
+- incpl.
+- '1909'
+'402010878':
+- ny
+- NOT PARSABLE
+'402010880':
+- ny
+- NOT PARSABLE
+'402010882':
+- ny
+- NOT PARSABLE
+'402010902':
+- "? YP"
+- '1902'
+'404000000':
+- "?"
+- '1993'
+'404000004':
+- "?"
+- '1975'
+'404000005':
+- "?"
+- '1975'
+'404000006':
+- incpl.
+- '1979'
+'404000045':
+- incpl.
+- '1985'
+'404000046':
+- incpl.
+- '1985'
+'404000250':
+- incpl.
+- '1971'
+'405000021':
+- "[]"
+- '1848'
+'405000271':
+- incpl.
+- '1915'
+'405000289':
+- d
+- '1915'
+'405000305':
+- d
+- '1954'
+'405000309':
+- incpl.
+- '1907'
+'405000512':
+- incpl.
+- '1883'
+'405000513':
+- incpl.
+- '1883'
+'405000514':
+- incpl.
+- '1883'
+'405000515':
+- incpl.
+- '1883'
+'405000516':
+- incpl.
+- '1883'
+'405000517':
+- incpl.
+- '1883'
+'405000518':
+- incpl.
+- '1883'
+'405000519':
+- incpl.
+- '1883'
+'405000520':
+- incpl.
+- '1883'
+'405000647':
+- d
+- '1814'
+'405000680':
+- cd (1904)
+- '1914'
+'405000701':
+- d
+- '1945'
+'405000702':
+- d
+- '1945'
+'405000703':
+- d
+- '1945'
+'405000705':
+- d
+- '1961'
+'405000706':
+- d
+- '1961'
+'405000707':
+- d
+- '1961'
+'405000708':
+- d
+- '1961'
+'405000761':
+- incpl.
+- '1936'
+'405000766':
+- incpl.
+- '1937'
+'405000767':
+- incpl.
+- '1937'
+'405000768':
+- incpl.
+- '1937'
+'405000769':
+- incpl.
+- '1937'
+'405000771':
+- incpl.
+- '1937'
+'405000774':
+- incpl.
+- '1937'
+'405000775':
+- incpl.
+- '1937'
+'405000776':
+- incpl.
+- '1937'
+'405000778':
+- incpl.
+- '1937'
+'405000779':
+- incpl.
+- '1937'
+'405000781':
+- incpl.
+- '1937'
+'405000782':
+- incpl.
+- '1937'
+'405000783':
+- incpl.
+- '1937'
+'405000784':
+- incpl.
+- '1937'
+'405000989':
+- nos
+- '1950'
+'406000006':
+- incpl.
+- '1952'
+'406000230':
+- "[] 1st perf."
+- '1943'
+'406001197':
+- ny
+- NOT PARSABLE
+'406001985':
+- ny
+- NOT PARSABLE
+'406001986':
+- ny
+- NOT PARSABLE
+'406001987':
+- ny
+- NOT PARSABLE
+'406001988':
+- ny
+- NOT PARSABLE
+'406001989':
+- ny
+- NOT PARSABLE
+'406001990':
+- ny
+- NOT PARSABLE
+'407001361':
+- d
+- '1940'
+'407001441':
+- mig 500
+- '1950'
+'407001483':
+- mig 500
+- '1978'
+'407001568':
+- mig 500
+- '1956'
+'407001639':
+- se
+- '1923'
+'407001640':
+- se
+- '1923'
+'407001641':
+- se
+- '1923'
+'407001642':
+- se
+- '1923'
+'407001643':
+- se
+- '1923'
+'407001644':
+- se
+- '1923'
+'407001645':
+- se
+- '1923'
+'407001646':
+- se
+- '1923'
+'407001647':
+- se
+- '1923'
+'407001648':
+- se
+- '1923'
+'407001650':
+- se
+- '1923'
+'407001651':
+- se
+- '1923'
+'407001652':
+- se
+- '1923'
+'407001653':
+- se
+- '1923'
+'407001654':
+- se
+- '1923'
+'407001655':
+- se
+- '1923'
+'407001656':
+- se
+- '1923'
+'407001657':
+- se
+- '1923'
+'407001658':
+- se
+- '1923'
+'407001660':
+- se
+- '1923'
+'407001661':
+- se
+- '1923'
+'407001662':
+- se
+- '1923'
+'407001663':
+- se
+- '1923'
+'407001664':
+- se
+- '1923'
+'407001665':
+- se
+- '1923'
+'407001666':
+- se
+- '1923'
+'407001667':
+- se
+- '1923'
+'407001668':
+- se
+- '1923'
+'407001669':
+- se
+- '1923'
+'407001671':
+- se
+- '1923'
+'407001672':
+- se
+- '1923'
+'407001673':
+- se
+- '1923'
+'407001674':
+- se
+- '1923'
+'407001675':
+- se
+- '1923'
+'407001676':
+- se
+- '1923'
+'407001677':
+- se
+- '1923'
+'407001678':
+- se
+- '1923'
+'407001679':
+- se
+- '1923'
+'407001681':
+- se
+- '1925'
+'407001682':
+- se
+- '1925'
+'407001683':
+- se
+- '1925'
+'407001684':
+- se
+- '1925'
+'407001685':
+- se
+- '1925'
+'407001686':
+- se
+- '1925'
+'407001687':
+- se
+- '1925'
+'407001688':
+- se
+- '1925'
+'407001689':
+- se
+- '1925'
+'407001700':
+- se
+- '1925'
+'407001701':
+- se
+- '1925'
+'407001702':
+- se
+- '1925'
+'407001703':
+- se
+- '1925'
+'407001704':
+- se
+- '1925'
+'407001705':
+- se
+- '1925'
+'407001706':
+- se
+- '1925'
+'407001707':
+- se
+- '1925'
+'407001708':
+- se
+- '1925'
+'407001709':
+- se
+- '1925'
+'407001711':
+- se
+- '1925'
+'407001712':
+- se
+- '1925'
+'407001713':
+- se
+- '1925'
+'407001714':
+- se
+- '1925'
+'407001715':
+- se
+- '1925'
+'407001716':
+- se
+- '1925'
+'407001717':
+- se
+- '1925'
+'407001718':
+- se
+- '1925'
+'407001719':
+- se
+- '1925'
+'407001721':
+- se
+- '1925'
+'407001722':
+- se
+- '1925'
+'407001723':
+- se
+- '1925'
+'407001724':
+- se
+- '1925'
+'407001725':
+- se
+- '1925'
+'407001726':
+- se
+- '1925'
+'407001727':
+- se
+- '1925'
+'407001729':
+- se
+- '1925'
+'407001730':
+- se
+- '1925'
+'407001731':
+- se
+- '1925'
+'407001732':
+- se
+- '1925'
+'407001733':
+- se
+- '1925'
+'407001734':
+- se
+- '1925'
+'407001735':
+- se
+- '1925'
+'407001736':
+- se
+- '1925'
+'407001805':
+- se
+- '1959'
+'407001806':
+- se
+- '1959'
+'407001812':
+- incpl.
+- '1829'
+'407001822':
+- se
+- '1960'
+'407001823':
+- se
+- '1960'
+'407001824':
+- se
+- '1960'
+'407001825':
+- se
+- '1960'
+'407001826':
+- se
+- '1960'
+'407001827':
+- se
+- '1960'
+'407001829':
+- se
+- '1960'
+'407001830':
+- se
+- '1960'
+'407001831':
+- se
+- '1960'
+'407001832':
+- se
+- '1960'
+'407001833':
+- se
+- '1960'
+'407001834':
+- se
+- '1960'
+'407001836':
+- se
+- '1960'
+'407001837':
+- se
+- '1960'
+'407001838':
+- se
+- '1960'
+'407001839':
+- se
+- '1960'
+'407001840':
+- se
+- '1960'
+'407001841':
+- se
+- '1960'
+'407001846':
+- se
+- '1966'
+'407001847':
+- se
+- '1966'
+'407001849':
+- se
+- '1966'
+'407001850':
+- se
+- '1966'
+'407001856':
+- cd (1981)
+- '1979'
+'407001860':
+- se
+- '1984'
+'407001861':
+- se
+- '1984'
+'407001862':
+- se
+- '1984'
+'407001863':
+- se
+- '1984'
+'407001865':
+- se
+- '1984'
+'407001866':
+- se
+- '1984'
+'407001867':
+- se
+- '1984'
+'407001868':
+- se
+- '1984'
+'407001869':
+- se
+- '1984'
+'407001876':
+- "? YP"
+- '1974'
+'407001894':
+- cd (1987)
+- '1988'
+'407001922':
+- incpl.
+- '1830'
+'407001926':
+- incpl.
+- '1833'
+'407001975':
+- cd (1831)
+- '1834'
+'407002117':
+- incpl.
+- '1828'
+'407002118':
+- cd (1826)
+- '1825'
+'407002325':
+- ny
+- NOT PARSABLE
+'407002326':
+- ny
+- NOT PARSABLE
+'407002330':
+- ny
+- NOT PARSABLE
+'407002334':
+- ny
+- NOT PARSABLE
+'407002335':
+- ny
+- NOT PARSABLE
+'407002336':
+- ny
+- NOT PARSABLE
+'407002338':
+- ny
+- NOT PARSABLE
+'407002444':
+- se
+- '1874'
+'407002595':
+- incpl.
+- '1868'
+'407002596':
+- incpl.
+- '1868'
+'407002649':
+- se
+- '1860'
+'407002651':
+- se
+- '1860'
+'407002652':
+- se
+- '1860'
+'407002653':
+- se
+- '1860'
+'407002654':
+- se
+- '1860'
+'407002655':
+- se
+- '1860'
+'407002656':
+- se
+- '1860'
+'407002657':
+- se
+- '1860'
+'407002659':
+- se
+- '1860'
+'407002660':
+- se
+- '1860'
+'407002663':
+- se
+- '1860'
+'407002664':
+- se
+- '1860'
+'407002666':
+- se
+- '1862'
+'407002667':
+- se
+- '1862'
+'407002668':
+- se
+- '1862'
+'407002669':
+- se
+- '1862'
+'407002670':
+- se
+- '1862'
+'407002671':
+- se
+- '1862'
+'407002672':
+- se
+- '1862'
+'407002673':
+- se
+- '1862'
+'407002674':
+- se
+- '1862'
+'407002675':
+- se
+- '1862'
+'407002680':
+- se
+- '1862'
+'407002681':
+- se
+- '1862'
+'407002682':
+- se
+- '1862'
+'407002757':
+- se
+- '1887'
+'407002758':
+- se
+- '1887'
+'407002759':
+- se
+- '1887'
+'407002924':
+- se
+- '1881'
+'408002661':
+- se
+- '1829'
+'408002662':
+- se
+- '1829'
+'408002750':
+- d
+- '1830'
+'408002751':
+- d
+- '1830'
+'408002752':
+- d
+- '1830'
+'408002753':
+- d
+- '1830'
+'408002754':
+- d
+- '1830'
+'408002755':
+- d
+- '1830'
+'408002756':
+- d
+- '1830'
+'408002757':
+- d
+- '1830'
+'408002759':
+- d
+- '1820'
+'408002760':
+- d
+- '1820'
+'408002786':
+- d
+- '1820'
+'408002787':
+- d
+- '1820'
+'408002788':
+- d
+- '1820'
+'408002789':
+- d
+- '1820'
+'408002790':
+- d
+- '1820'
+'408002791':
+- d
+- '1820'
+'408002792':
+- d
+- '1820'
+'408002798':
+- d
+- '1833'
+'408002799':
+- d
+- '1833'
+'408002800':
+- d
+- '1833'
+'408002801':
+- d
+- '1833'
+'408002802':
+- d
+- '1833'
+'408002803':
+- d
+- '1833'
+'408002846':
+- d
+- '1829'
+'408002847':
+- d
+- '1829'
+'408002848':
+- d
+- '1829'
+'408002849':
+- d
+- '1829'
+'408002850':
+- d
+- '1829'
+'408002851':
+- d
+- '1829'
+'408002852':
+- d
+- '1829'
+'408002853':
+- d
+- '1829'
+'408002854':
+- d
+- '1829'
+'408002855':
+- d
+- '1829'
+'408002856':
+- d
+- '1829'
+'408002857':
+- d
+- '1829'
+'408002858':
+- d
+- '1829'
+'408002859':
+- d
+- '1829'
+'408002860':
+- d
+- '1829'
+'408003060':
+- d
+- '1823'
+'408003132':
+- d
+- '1823'
+'408003133':
+- d
+- '1823'
+'408003135':
+- d
+- '1829'
+'408003136':
+- d
+- '1823'
+'408003138':
+- d
+- '1823'
+'408003139':
+- d
+- '1823'
+'408003141':
+- d
+- '1823'
+'408003142':
+- d
+- '1823'
+'408003143':
+- d
+- '1823'
+'408003144':
+- d
+- '1823'
+'408003317':
+- d
+- '1828'
+'408003682':
+- mig 260d
+- '1913'
+'408004694':
+- d
+- '1892'
+'408004695':
+- d
+- '1892'
+'408005082':
+- d
+- '1825'
+'409000975':
+- incpl.
+- '1932'
+'409000976':
+- incpl
+- '1932'
+'409001001':
+- cd (1936)
+- '1926'
+'409001020':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1938'
+'409001021':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1938'
+'409001022':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1938'
+'409001025':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1938'
+'409001026':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1938'
+'409001027':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1938'
+'409001028':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1938'
+'409001029':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1938'
+'409001035':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1938'
+'409001036':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1938'
+'409001037':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1938'
+'409001084':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1941'
+'409001132':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1946'
+'409001133':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1946'
+'409001134':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1946'
+'409001135':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1946'
+'409001136':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1946'
+'409001138':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1946'
+'409001139':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1946'
+'409001140':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1946'
+'409001152':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1949'
+'409001153':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1949'
+'409001154':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1949'
+'409001155':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1949'
+'409001156':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1949'
+'409001157':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1949'
+'409001158':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1949'
+'409001160':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1949'
+'409001161':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1949'
+'409001162':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1949'
+'409001163':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1949'
+'409001169':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1950'
+'409001170':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1950'
+'409001175':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1951'
+'409001176':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1952'
+'409001177':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1952'
+'409001179':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1952'
+'409001180':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1952'
+'409001181':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1952'
+'409001182':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1952'
+'409001183':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1952'
+'409001184':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1952'
+'409001195':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1958'
+'409001200':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1956'
+'409001201':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1956'
+'409001202':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1956'
+'409001211':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1947'
+'409001212':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1947'
+'409001213':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1947'
+'409001215':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1947'
+'409001220':
+- |-
+ incpl.
+ se
+ mig 260d
+- '1944'
+'409001222':
+- "?"
+- '1947'
+'409001301':
+- se
+- '1945'
+'409001302':
+- se
+- '1945'
+'409001303':
+- se
+- '1945'
+'409001304':
+- se
+- '1945'
+'409001305':
+- se
+- '1945'
+'409001306':
+- se
+- '1945'
+'409001307':
+- se
+- '1945'
+'409001308':
+- se
+- '1945'
+'409001309':
+- se
+- '1945'
+'409001310':
+- se
+- '1945'
+'409001311':
+- se
+- '1945'
+'409001312':
+- se
+- '1945'
+'409001320':
+- se
+- '1910'
+'409001321':
+- se
+- '1910'
+'409001418':
+- incpl.
+- '1956'
+'409001420':
+- se
+- '1915'
+'409001421':
+- se
+- '1915'
+'409001557':
+- se
+- '1811'
+'409001558':
+- se
+- '1811'
+'409001559':
+- se
+- '1811'
+'409001560':
+- se
+- '1811'
+'409001561':
+- se
+- '1811'
+'409001562':
+- se
+- '1811'
+'409001563':
+- se
+- '1811'
+'409001564':
+- se
+- '1811'
+'409001565':
+- se
+- '1811'
+'409001566':
+- se
+- '1811'
+'409001567':
+- se
+- '1811'
+'409001568':
+- se
+- '1811'
+'409001569':
+- se
+- '1811'
+'409001570':
+- se
+- '1811'
+'409001615':
+- se
+- '1944'
+'409001616':
+- se
+- '1944'
+'409001617':
+- se
+- '1944'
+'409001618':
+- se
+- '1944'
+'409001619':
+- se
+- '1944'
+'409001621':
+- se
+- '1944'
+'409001622':
+- se
+- '1944'
+'409001623':
+- se
+- '1944'
+'409001624':
+- se
+- '1944'
+'409001625':
+- se
+- '1944'
+'409001626':
+- se
+- '1944'
+'409001628':
+- se
+- '1944'
+'409001629':
+- se
+- '1944'
+'409001630':
+- se
+- '1944'
+'409001631':
+- se
+- '1944'
+'409001632':
+- se
+- '1944'
+'409001633':
+- se
+- '1944'
+'409001635':
+- se
+- '1944'
+'409001636':
+- se
+- '1944'
+'409001637':
+- se
+- '1944'
+'409001639':
+- se
+- '1944'
+'409001640':
+- se
+- '1944'
+'409001641':
+- se
+- '1944'
+'409001642':
+- se
+- '1944'
+'409001643':
+- se
+- '1944'
+'409001644':
+- se
+- '1944'
+'409001645':
+- se
+- '1944'
+'409001647':
+- se
+- '1944'
+'409001648':
+- se
+- '1944'
+'409001649':
+- se
+- '1944'
+'409001652':
+- |-
+ se
+ range
+- '1945'
+'409001653':
+- |-
+ se
+ range
+- '1945'
+'409001654':
+- |-
+ se
+ range
+- '1945'
+'409001655':
+- |-
+ se
+ range
+- '1945'
+'409001656':
+- |-
+ se
+ range
+- '1945'
+'409001657':
+- |-
+ se
+ range
+- '1945'
+'409001658':
+- |-
+ se
+ range
+- '1945'
+'409001659':
+- |-
+ se
+ range
+- '1945'
+'409001660':
+- |-
+ se
+ range
+- '1945'
+'409001661':
+- |-
+ se
+ range
+- '1945'
+'409001662':
+- |-
+ se
+ range
+- '1945'
+'409001663':
+- |-
+ se
+ range
+- '1945'
+'409001664':
+- |-
+ se
+ range
+- '1945'
+'409001665':
+- |-
+ se
+ range
+- '1945'
+'409001666':
+- |-
+ se
+ range
+- '1945'
+'409001667':
+- |-
+ se
+ range
+- '1945'
+'409001668':
+- |-
+ se
+ range
+- '1945'
+'409001669':
+- |-
+ se
+ range
+- '1945'
+'409001670':
+- |-
+ se
+ range
+- '1945'
+'409001671':
+- |-
+ se
+ range
+- '1945'
+'409001672':
+- |-
+ se
+ range
+- '1945'
+'409001673':
+- |-
+ se
+ range
+- '1945'
+'409001674':
+- |-
+ se
+ range
+- '1945'
+'409001675':
+- |-
+ se
+ range
+- '1945'
+'409001676':
+- |-
+ se
+ range
+- '1945'
+'409001677':
+- |-
+ se
+ range
+- '1945'
+'409001678':
+- |-
+ se
+ range
+- '1945'
+'409001679':
+- |-
+ se
+ range
+- '1945'
+'409001983':
+- "? range"
+- '1941'
+'409002016':
+- "? range"
+- '1970'
+'409002017':
+- "? range"
+- '1982'
+'409002063':
+- se
+- '1881'
+'409002064':
+- se
+- '1881'
+'409002065':
+- se
+- '1881'
+'409002066':
+- se
+- '1881'
+'409002067':
+- se
+- '1881'
+'409002530':
+- se
+- '1936'
+'409002531':
+- se
+- '1936'
+'409002532':
+- se
+- '1936'
+'409002545':
+- incpl.
+- '1959'
+'409002580':
+- |-
+ ?
+ cd 1942
+- '1940'
+'409002638':
+- |-
+ se
+ range
+- '1917'
+'409002639':
+- |-
+ se
+ range
+- '1917'
+'409002640':
+- |-
+ se
+ range
+- '1917'
+'409002641':
+- |-
+ se
+ range
+- '1917'
+'409002642':
+- |-
+ se
+ range
+- '1917'
+'409002643':
+- |-
+ se
+ range
+- '1917'
+'409002644':
+- |-
+ se
+ range
+- '1917'
+'409002645':
+- |-
+ se
+ range
+- '1917'
+'409002647':
+- se
+- '1923'
+'409002648':
+- se
+- '1923'
+'409002649':
+- se
+- '1923'
+'409002650':
+- se
+- '1923'
+'409002651':
+- se
+- '1923'
+'409002652':
+- se
+- '1923'
+'409002653':
+- se
+- '1923'
+'409002654':
+- se
+- '1923'
+'409002656':
+- se
+- '1923'
+'409002657':
+- se
+- '1923'
+'409002658':
+- se
+- '1923'
+'409002659':
+- se
+- '1923'
+'409002660':
+- se
+- '1923'
+'409002661':
+- se
+- '1923'
+'409002662':
+- se
+- '1923'
+'409002663':
+- se
+- '1923'
+'409002664':
+- se
+- '1923'
+'409002666':
+- se
+- '1923'
+'409002667':
+- se
+- '1923'
+'409002668':
+- se
+- '1923'
+'409002669':
+- se
+- '1923'
+'409002670':
+- se
+- '1923'
+'409002671':
+- se
+- '1923'
+'409002672':
+- se
+- '1923'
+'409002673':
+- se
+- '1923'
+'409002675':
+- se
+- '1923'
+'409002676':
+- se
+- '1923'
+'409002677':
+- se
+- '1923'
+'409002678':
+- se
+- '1923'
+'409002679':
+- se
+- '1923'
+'409002680':
+- se
+- '1923'
+'409002681':
+- se
+- '1923'
+'409002682':
+- se
+- '1923'
+'409002683':
+- se
+- '1923'
+'409002684':
+- se
+- '1923'
+'409002685':
+- se
+- '1923'
+'409002687':
+- se
+- '1923'
+'409002688':
+- se
+- '1923'
+'409002689':
+- se
+- '1923'
+'409002690':
+- se
+- '1923'
+'409002691':
+- se
+- '1923'
+'409002692':
+- se
+- '1923'
+'409002693':
+- se
+- '1923'
+'409002694':
+- se
+- '1923'
+'409002695':
+- se
+- '1923'
+'409002696':
+- se
+- '1923'
+'409002697':
+- se
+- '1923'
+'409002699':
+- se
+- '1923'
+'409002700':
+- se
+- '1923'
+'409002701':
+- se
+- '1923'
+'409002702':
+- se
+- '1923'
+'409002703':
+- se
+- '1923'
+'409002704':
+- se
+- '1923'
+'409002705':
+- se
+- '1923'
+'409002706':
+- se
+- '1923'
+'409002707':
+- se
+- '1923'
+'409002709':
+- se
+- '1923'
+'409002710':
+- se
+- '1923'
+'409002711':
+- se
+- '1923'
+'409002712':
+- se
+- '1923'
+'409002713':
+- se
+- '1923'
+'409002714':
+- se
+- '1923'
+'409002715':
+- se
+- '1923'
+'409002716':
+- se
+- '1923'
+'409002717':
+- se
+- '1923'
+'409002718':
+- se
+- '1923'
+'409002719':
+- se
+- '1923'
+'409002721':
+- se
+- '1923'
+'409002722':
+- se
+- '1923'
+'409002723':
+- se
+- '1923'
+'409002724':
+- se
+- '1923'
+'409002725':
+- se
+- '1923'
+'409002726':
+- se
+- '1923'
+'409002727':
+- se
+- '1923'
+'409002728':
+- se
+- '1923'
+'409002729':
+- se
+- '1923'
+'409002731':
+- se
+- '1923'
+'409002732':
+- se
+- '1923'
+'409002733':
+- se
+- '1923'
+'409002734':
+- se
+- '1923'
+'409002735':
+- se
+- '1923'
+'409002736':
+- se
+- '1923'
+'409002737':
+- se
+- '1923'
+'409002738':
+- se
+- '1923'
+'409002739':
+- se
+- '1923'
+'409002741':
+- se
+- '1923'
+'409002742':
+- se
+- '1923'
+'409002743':
+- se
+- '1923'
+'409002744':
+- se
+- '1923'
+'409002745':
+- se
+- '1923'
+'409002746':
+- se
+- '1923'
+'409002747':
+- se
+- '1923'
+'409002748':
+- se
+- '1923'
+'409002750':
+- se
+- '1923'
+'409002751':
+- se
+- '1923'
+'409002752':
+- se
+- '1923'
+'409002753':
+- se
+- '1923'
+'409002754':
+- se
+- '1923'
+'409002755':
+- se
+- '1923'
+'409002756':
+- se
+- '1923'
+'409002757':
+- se
+- '1923'
+'409002758':
+- se
+- '1923'
+'409002760':
+- se
+- '1923'
+'409002761':
+- se
+- '1923'
+'409002762':
+- se
+- '1923'
+'409002763':
+- se
+- '1923'
+'409002764':
+- se
+- '1923'
+'409002765':
+- se
+- '1923'
+'409002766':
+- se
+- '1923'
+'409002767':
+- se
+- '1923'
+'409002768':
+- se
+- '1923'
+'409002769':
+- se
+- '1923'
+'409002771':
+- se
+- '1923'
+'409002772':
+- se
+- '1923'
+'409002773':
+- se
+- '1923'
+'409002774':
+- se
+- '1923'
+'409002775':
+- se
+- '1923'
+'409002776':
+- se
+- '1923'
+'409002777':
+- se
+- '1923'
+'409002778':
+- se
+- '1923'
+'409002779':
+- se
+- '1923'
+'409002781':
+- se
+- '1923'
+'409002782':
+- se
+- '1923'
+'409002783':
+- se
+- '1923'
+'409002784':
+- se
+- '1923'
+'409002785':
+- se
+- '1923'
+'409002786':
+- se
+- '1923'
+'409002787':
+- se
+- '1923'
+'409002788':
+- se
+- '1923'
+'409002789':
+- se
+- '1923'
+'409002790':
+- se
+- '1923'
+'409002791':
+- se
+- '1923'
+'409002792':
+- se
+- '1923'
+'409002794':
+- se
+- '1923'
+'409002795':
+- se
+- '1923'
+'409002796':
+- se
+- '1923'
+'409002797':
+- se
+- '1923'
+'409002798':
+- se
+- '1923'
+'409002799':
+- se
+- '1923'
+'409002800':
+- se
+- '1923'
+'409002801':
+- se
+- '1923'
+'409002802':
+- se
+- '1923'
+'409002803':
+- se
+- '1923'
+'409002804':
+- se
+- '1923'
+'409002805':
+- se
+- '1923'
+'409002807':
+- se
+- '1923'
+'409002808':
+- se
+- '1923'
+'409002809':
+- se
+- '1923'
+'409002810':
+- se
+- '1923'
+'409002811':
+- se
+- '1923'
+'409002812':
+- se
+- '1923'
+'409002813':
+- se
+- '1923'
+'409002814':
+- se
+- '1923'
+'409002815':
+- se
+- '1923'
+'409002816':
+- se
+- '1923'
+'409002818':
+- se
+- '1923'
+'409002819':
+- se
+- '1923'
+'409002820':
+- se
+- '1923'
+'409002821':
+- se
+- '1923'
+'409002822':
+- se
+- '1923'
+'409002823':
+- se
+- '1923'
+'409002824':
+- se
+- '1923'
+'409002825':
+- se
+- '1923'
+'409002826':
+- se
+- '1923'
+'409002858':
+- se
+- '1942'
+'409002859':
+- se
+- '1942'
+'409002861':
+- se
+- '1942'
+'409002862':
+- se
+- '1942'
+'409002871':
+- incpl.
+- '1981'
+'409002942':
+- incpl.
+- '1966'
+'409003082':
+- se
+- '1904'
+'409003083':
+- se
+- '1904'
+'409003085':
+- se
+- '1904'
+'409003086':
+- se
+- '1904'
+'409003273':
+- incpl.
+- '1930'
+'409003294':
+- se
+- '1936'
+'409003295':
+- se
+- '1936'
+'409003296':
+- se
+- '1936'
+'409003590':
+- "?"
+- '1846'
+'410000333':
+- cd (1968)
+- '1958'
+'410000769':
+- "? range of dates"
+- '1889'
+'410000776':
+- incpl.
+- '1889'
+'410000780':
+- "? comp. date?"
+- '1884'
+'410000908':
+- incpl.
+- '1914'
+'410000970':
+- "?"
+- '1692'
+'410000975':
+- "?"
+- '1738'
+'410001306':
+- "?"
+- '1896'
+'410001349':
+- "? range"
+- '1885'
+'410001473':
+- incpl.
+- '1850'
+'410001783':
+- incpl.
+- '1890'
+'410001823':
+- |-
+ cd (1849)
+ mig 500
+- '1843'
+'410001864':
+- "?"
+- '1872'
+'410001865':
+- "?"
+- '1872'
+'410002235':
+- "?"
+- '1865'
+'410003208':
+- nos
+- '1802'
+'410004291':
+- incpl.
+- '1913'
+'410004296':
+- |-
+ cd (1907)
+ d
+- '1904'
+'410004301':
+- d
+- '1935'
+'410004343':
+- incpl.
+- '1948'
+'410004423':
+- d
+- '1914'
+'410004424':
+- d
+- '1914'
+'410004570':
+- incpl.
+- '1824'
+'410004571':
+- incpl.
+- '1824'
+'410004574':
+- incpl.
+- '1824'
diff --git a/housekeeping/upgrade_3.5/240r.yml b/housekeeping/upgrade_3.5/240r.yml
new file mode 100644
index 000000000..077baeaf7
--- /dev/null
+++ b/housekeeping/upgrade_3.5/240r.yml
@@ -0,0 +1,69 @@
+---
+10t: 10t
+11t: 11t
+12t: 12t
+1t: 1t
+2t: 2t
+3t: 3t
+4t: 4t
+5t: 5t
+6t: 6t
+7t: 7t
+8t: 8t
+9t: 9t
+A: A
+A-Dur: A
+Ab: A|b
+B: B
+B Dur: B
+Bb: B|b
+C: C
+C#: C|x
+C-Dur: C
+Cb: C|b
+Cx: C|x
+D: D
+Db: D|b
+E: E
+E Dur: E
+Eb: E|b
+Es Dur: E|b
+F: F
+F#: F|x
+Fx: F|x
+G: G
+G Dur: G
+G-Dur: G
+Gb: G|b
+Ges Dur: G|b
+H: B
+ParC 54:
+"\\":
+a: a
+a#: a|x
+a/A:
+ab: a|b
+b: b
+bb: b|b
+c: c
+c moll: c
+c#: c|x
+cx: c|x
+d: d
+d moll: d
+d#: d|x
+d/D:
+db: d|b
+e: e
+eb: e|b
+f: f
+f#: f|x
+fb:
+fx: f|x
+g: g
+g moll: g
+g#: g|x
+gb: g|b
+gx: g|x
+h: h
+op. 58:
diff --git a/housekeeping/upgrade_3.5/505-520_conversion.yml b/housekeeping/upgrade_3.5/505-520_conversion.yml
new file mode 100644
index 000000000..a7bc3a640
--- /dev/null
+++ b/housekeeping/upgrade_3.5/505-520_conversion.yml
@@ -0,0 +1,448 @@
+---
+- 13 dances and introduction
+- 14 keyboard pieces
+- 16 hymns, 16 songs sacred, 2 litanies
+- 1st act arranged from the opera in 3 acts
+- 1st act from the opera
+- 1st act of an opera
+- 1st and 2nd act from the opera in 3 acts
+- 1st and 2nd act of the pantomime
+- 1st keyboard piece
+- 1st movement of the sonata
+- 1st version of the trio
+- 2 Couplets
+- 2 Sonatas for piano.
+- 2 acts
+- 2 arias from the opera
+- 2 arranged arias from the opera in 3 acts
+- 2 choruses from the oratorio
+- 2nd and 3rd act from the Singspiel
+- 2nd keyboard piece
+- 2nd version of the Symphonie
+- 2nd version of the Trio
+- 2nd version of the dramma per musica in 3 acts.
+- 3 Couplets
+- 3 Sonatas for zwo flutes.
+- 3 acts
+- 3 couplets
+- 36 antiphonies
+- 3rd (last) movement of the duet
+- 3rd keyboard piece
+- 3rd movement from the overture of the favola pastorale in 3 acts
+- 4 arias and scene with duetto from the opera in 3 acts
+- 40 numbers of an opera
+- 4th keyboard piece
+- 5 arias and 2 scenes with cavatinas from the opera
+- 5 arias, 1 terzetto, 1 scene, 1 duetto, scene with recitative and aria
+- 5 couplets
+- 5th act from a tragedy
+- 5th keyboard piece
+- 6 variations
+- 7 choruses from the cantata
+- 7th keyboard piece
+- 8 masses and 1 requiem
+- 8th keyboard piece
+- 9th keyboard piece
+- Act 1 by Amadei, act 2 by Bononcini, ouverture and act 3 by Händel
+- Act 1 by Majo, act 2 by Insanguine, act 3 by Errichelli
+- Act 1 by Mederitsch, act 2 by Winter
+- Act 1, no.1-11, act 2, no.12-20, act 3, no.21-29
+- Act 2, scene 2 and 3
+- Air with 6 variations
+- Allegro and 15 variations
+- Allegro and 3 variations
+- Allegro with Cadenza
+- Alleluia
+- Andante and 4 variations
+- Andante with 6 variations
+- Antiphonae Beatae Virginis
+- Appendix I. De Tono Lectionis mensae
+- Appendix II. De modo professionis vitam monasticam sub Regula S. P. N. Benedicti.
+- Aria (Rondo) without the recitative
+- Aria from 3rd act, 2nd scene
+- Aria from act 1 of the opera in 3 acts
+- Aria from an opera
+- Aria from the 1st act of the opera in 3 acts
+- Aria from the 3rd act of the tragédie lyrique in 4 acts
+- Aria from the Singspiel in 2 acts
+- Aria from the comic opera in 3 acts
+- Aria from the intermezzo in 2 acts
+- Aria from the opera
+- Aria from the opera in 1 act
+- Aria from the opera in 2 acts
+- Aria from the opera in 3 acts
+- Aria from the opera in 4 acts
+- Aria from the opera seria in 3 acts
+- Aria from the second act from the Singspiel in 2 acts
+- Aria no.9 from act 1 arranged for winds
+- Aria with 15 variations
+- Arias from a festive music in 3 acts
+- Arias and Chorus from act 2
+- Arias and choruses for the drama of Shakespeare
+- Arias from 1st act
+- Arias from act 2
+- Arias of act 3
+- Ariette from the comic opera in 2 acts
+- Ariette from the opera in 1 act
+- Ariette from the opera in 3 acts
+- Arranged aria from the 1st act of the opera in 3 acts
+- Arranged aria from the 2nd act of the opera in 3 acts
+- Arranged scene and chorus from the 3rd act of the opera in 3 acts
+- Arranged scene from the tragédie lyrique in 3 acts
+- Arranged terzetto from the opera
+- Arranged waltz from the Singspiel in 2 acts
+- Arranged waltz from the opéra-comique in 1 act
+- Arrangement of 1 scene, 2 arias and duetto from the opera
+- Arrangement of 2 arias from the opera
+- Arrangement of 3 arias from the opera in 3 acts
+- Arrangement of a cavatina from the opera in 2 acts
+- Arrangement of a chorus from the opera
+- Arrangement of a duetto from the opera buffa in 2 acts
+- Arrangement of a polonaise from the opera in 2 acts
+- Arrangement of a rondo and of a recitative with aria from the opera in 2 acts
+- Arrangement of an aria from the dramma eroico in 3 acts
+- Arrangement of an aria from the opera in 4 acts
+- Arrangement of cantata
+- Arrangement of scene and rondo from the opera in 3 acts
+- Arrangement of the air from the ouverture in D BWV 1068 by Johann Sebastian Bach
+- Arrangement of the air from the overture in D BWV 1068 by Johann Sebastian Bach
+- Arrangement of the aria from an opera
+- Arrangement of the aria from the Singspiel in 2 acts
+- Arrangement of the aria from the opera
+- Arrangement of the aria from the opera in 1 act
+- Arrangement of the aria from the opera in 2 acts
+- Arrangement of the aria from the opera in 3 acts
+- Arrangement of the arie from the opera
+- Arrangement of the ariette from the opera in 3 acts
+- Arrangement of the duettino from the opera in 2 acts
+- Arrangement of the duetto from the opera
+- Arrangement of the duetto from the opera buffa in 2 acts
+- Arrangement of the duetto from the opera in 3 acts
+- Arrangement of the introduction and quintet from the 1st act of the opera
+- Arrangement of the polca from the opera
+- Arrangement of the quartet from the opera in 2 acts
+- Arrangement of the quartetto from the opera in 2 acts
+- Arrangement of the quintetto from the Singspiel in 2 acts
+- Arrangement of the recitative and aria from an opera
+- Arrangement of the recitative and aria from the opera in 3 acts
+- Arrangement of the recitative and cavatina
+- Arrangement of the recitative and rondo from the opera
+- Arrangement of the rondo from the opera in 1 act
+- Arrangement of the rondo from the opera in 3 acts
+- Arrangement of the terzetto from the opera in 2 acts
+- Arrangement of the terzetto from the opera in 3 acts
+- Arrangement of the tragédie lyrique in 3 acts
+- Arrangement of two arias from the opera
+- Arrangements of the aria and the duetto from the opera
+- Ballet from the tragédie lyrique in 3 acts
+- Ballet with 20 movements
+- Ballet with sinfonia and 16 movements
+- Ballets and Arias from act 2
+- Cantata in 2 parts, overture, nos. 1-23
+- Canzone
+- Canzone from the second act of the opera in 4 acts
+- Canzonetta from the opera in 4 acts
+- Cavatina from the Singspiel in 2 acts
+- Cavatina from the opera
+- Cavatina from the opera in 1 act
+- Cavatina from the opera in 2 acts
+- Cavatina from the opera in 3 acts
+- Chanson
+- Chorus from act 2
+- Chorus from the Singspiel in 3 acts
+- Chorus from the oratorio
+- Chorus from the play with music
+- Choruses for the drama of Shakespeare
+- Choruses from the 2nd act of the opera in 3 acts
+- Dramma in musica in 3 acts.
+- Dramma per musica in 2 acts
+- Dramma per musica in 2 acts with epilogue
+- Dramma per musica in 3 acts
+- Dramma per musica in 3 acts.
+- Dramma per musica in 5 acts
+- Duets from act 3
+- Duettino from the azione sacra in 2 acts
+- Duettino from the azzione sacra
+- Duettino from the opera in 1 act
+- Duetto and duettino from the opera in 2 acts
+- Duetto and terzetto from the opera
+- Duetto form the opera in 2 acts
+- Duetto from an opera
+- Duetto from an opera in 2 acts
+- Duetto from the Singspiel in 2 acts
+- Duetto from the Singspiel in 3 acts
+- Duetto from the intermezzo in 2 acts
+- Duetto from the intermezzo in 2 parts
+- Duetto from the opera
+- Duetto from the opera in 1 act
+- Duetto from the opera in 2 acts
+- Duetto from the opera in 3 acts
+- Duetto from the opera in 4 acts
+- Duetto from the opéra-comique in 1 act
+- Duetto from the passion in 2 acts
+- Easter oratorio
+- Excerpt of the compilation with new text
+- Excerpts aus dem 2.Akt der Tragédie lyrique in 3 Akten.
+- Excerpts from the opera in 3 acts
+- Excerpts of 5 arias of the dramma in musica in 3 acts
+- Excerpts of 6 arias of the dramma in musica in 3 acts
+- Exercises and 32 short piano pieces
+- Farsa in 1 act
+- Festa teatrale in 1 act
+- Festa teatrale in 2 parts
+- Festive music in 4 acts
+- Festive music in 5 acts
+- Finale from the farsa in 1 act
+- Finale from the first act from the opera in 2 acts
+- Finale from the opera
+- Finale from the opera in 2 acts
+- Finale of the 1st act from the opera in 2 acts
+- Finale of the first act from the opera in 2 acts
+- First act from the oper in 3 acts
+- First movement of the sonata
+- First movement of the sonatas
+- First movement of the symphony
+- First movement only.
+- First part of the oratorio
+- First version of the cantata
+- Identification with the Easter alleluiatic versus is uncertain.
+- Instrumental pieces from a festive music in 4 acts
+- Intermezzo in 2 parts
+- Introduzione from the opera in 2 acts
+- Keyboard pieces, vocal pieces
+- Lacks slow introduction to first movement
+- Liederspiel in 2 acts
+- Lyrical drama in two acts
+- Marsch from 4th act and Finale from 5th act
+- Melodrama from the opera
+- Melodrama in 1 act
+- Melodrama in 3 acts
+- No. 25 in collective
+- No. 33 in collective
+- No.1 in collective manuscript
+- No.1-14 from the Singspiel
+- No.2 in collective manuscript
+- No.3 in collective manuscript
+- No.4 in collective manuscript
+- No.6 in collective manuscript
+- One chorus from the oratorio
+- One sonata movement
+- Only 2nd and 3rd act from the tragédie lyrique in 4 acts
+- Only 2nd movement
+- Only Kyrie and Beginning of Gloria
+- Only Kyrie and Gloria
+- Only bars 1-17
+- Only first recitative and aria
+- Only one sonata movement
+- Only the 13 first bars from the partsong
+- Only the first 33 bars from the requiem
+- Op16, Nr.3, 1.movement; Op16, Nr.2, 2.movement; Op16, Nr.3, 2.movement
+- Opera ballet with 7 entrées
+- Opera buffa in 2 acts
+- Opera buffa in 3 acts
+- Opera in 1 act
+- Opera in 2 acts
+- Opera in 3 acts
+- Opera in 4 acts
+- Opera in two acts
+- Opera seria in 3 acts (nos. 1-44)
+- Opera with overture and 9 numbers
+- Opera with prologue in 3 acts
+- Operas in 3 acts
+- Operas in 5 acts
+- Opéra comique in 1 act with 13 airs and 3 ensembles
+- Opéra comique in 11 scenes
+- Opéra comique in 2 acts
+- Opéra comique in 2 acts with 10 airs and 5 ensembles
+- Opéra comique with 11 airs and 2 ensembles
+- Opéra comique with 11 airs or ensembles
+- Opéra comique with 12 airs and 3 ensembles
+- Opéra comique with 13 airs and 3 ensembles
+- Opéra comique with 18 airs and 4 ensembles
+- Opéra comique with 18 airs and 7 ensembles
+- Opéra-comique in 1 act
+- Oratorio in 2 acts
+- Oratorio in 2 parts
+- Oratorio in 3 acts
+- Oratorio in 3 parts
+- Oratorio in 3 parts (part 2 and 3 incpl)
+- Overture and 12 numbers from the ballet in 3 acts
+- Overture and No.1 of the opera
+- Overture and no.1-18 from the opera in 4 acts
+- Overture for the drama of Shakespeare
+- Overture from an opera
+- Overture from the Intermezzo in 2 acts
+- Overture from the Singspiel in 3 acts
+- Overture from the ballet
+- Overture from the cantata
+- Overture from the cantata in 1 act
+- Overture from the dramma in 3 acts
+- Overture from the favola pastorale in 3 acts
+- Overture from the first and the third act from the oratorio in 3 acts
+- Overture from the ode in 2 parts
+- Overture from the opera
+- Overture from the opera in 1 act
+- Overture from the opera in 2 acts
+- Overture from the opera in 3 acts
+- Overture from the opera in 4 acts
+- Overture from the opera in 5 acts
+- Overture from the opéra-comique in 2 acts
+- Overture from the oratorio in 2 parts
+- Overture from the oratorio in 3 acts
+- Overture from the oratorio in 3 parts
+- Overture from the pasticcio in 3 acts
+- Overture from the second act from the oratorio in 3 parts
+- Overture from the tragédie lyrique
+- Overture from the tragédie lyrique in 3 acts
+- Overture from the tragédie lyrique in 4 acts
+- Overture of the Singspiel in 2 acts
+- Overture of the opera in 3 acts
+- Overtures to the 1st and the 2nd act from the opera in 3 acts
+- Pantomime in 3 scenes
+- Parodie in 3 acts
+- Part of the 3rd scene in Act 1
+- Pasion music
+- Passion music
+- Pastorale in 1 act
+- Pastorale in 13 scenes with 15 airs
+- Perhaps beginning of a sonata
+- Preludes 1 - 8 in C
+- Preludes 105 - 112 in b
+- Preludes 17-24 in D
+- Preludes 25 - 32 in d
+- Preludes 33 - 40 in F
+- Preludes 41 - 48 in f
+- Preludes 49 - 56 in G
+- Preludes 57 - 64 in g
+- Preludes 65 - 72 in A
+- Preludes 73 - 80 in a
+- Preludes 81 - 88 in Eb
+- Preludes 89 - 96 in Bb
+- Preludes 9-16 in c
+- Preludes 97 - 104 in e
+- Quartet from the Singspiel in 2 acts
+- Quartet from the dramma in 2 acts
+- Quartet fron the dramma in 2 acts
+- Quartetto from the opera in 1 act
+- Quartetto from the opera in 2 acts
+- Quatuor from the opera in 1 act
+- Quintetto from the Singspiel in 2 acts
+- Quintetto from the opera in 2 acts
+- Recitative and aria
+- Recitative and aria from an opera
+- Recitative and aria from the 3rd act of the opera in 3 acts
+- Recitative and aria from the cantata
+- Recitative and aria from the opera
+- Recitative and aria from the opera in 1 act
+- Recitative and aria from the opera in 2 acts
+- Recitative and aria from the opera in 3 acts
+- Recitative and aria from the oratorio
+- Recitative and cavatina from the opera in 2 acts
+- Recitative and cavatina from the opera in 3 acts
+- Recitative and chorus from the oratorio
+- Recitative and duetto from the opera
+- Recitative and duetto from the opera in 2 acts
+- Recitative and duetto from the opera in 3 acts
+- Recitative and quartetto from the azione sacra in 2 acts
+- Recitative and terzetto from an opera
+- Recitative and terzetto from the opera in 2 acts
+- Recitative and terzetto from the opera in 3 acts
+- Recitative, aria and chorus from the opera in 3 acts
+- Recitative, aria and duetto from the opera in 2 acts
+- Recitative, aria, scene and chorus from the tragédie lyrique in 4 acts
+- Recitative, duetto and chorus from the oratorio
+- Recitativo and aria from the opera
+- Recitativo and duetto from the opera
+- Recitativo and duetto from the opera in 3 acts
+- Red staff, black square notation. Clef not visible
+- Romance from the opera in 2 acts
+- Romance from the opera in 3 acts
+- Rondo from an opera
+- Rondo from the opera in 2 acts
+- Rondo from the opera in 3 acts
+- Rondo without recitativo
+- Scena and aria from the opera
+- Scena and aria from the opera in 2 acts
+- Scena and cavatina from the opera in 2 acts
+- Scena and duetto from the opera
+- Scena and duetto from the opera in 2 acts
+- Scena and quartetto from the opera in 2 acts
+- Scena and terzetto from the opera
+- Scena with cavatina from the opera
+- Scene and aria
+- Scene and aria from an opera
+- Scene and aria from the opera
+- Scene and aria from the opera in 1 act
+- Scene and aria from the opera in 2 acts
+- Scene and aria from the opera in 3 acts
+- Scene and aria from the oratorio
+- Scene and aria from the tragédie lyrique
+- Scene and cavatina from the act 4 from the opera in 4 acts
+- Scene and duetto from the opera in 2 acts
+- Scene and duetto from the opera in 3 acts
+- Scene and quintetto from the opera in 2 acts
+- Scene and rondo from an opera
+- Scene and rondo from the opera
+- Scene and rondo from the opera in 2 acts
+- Scene and rondo from the opera in 3 acts
+- Scene with recitative and aria
+- Scene with recitative and duetto
+- Scene, terzetto and quintetto from the opera in 2 acts
+- Second version of the cantata
+- Second version of the opéra comique in 1 act
+- Serenata in 1 act
+- Sextet from the opera in 2 acts
+- Sextetto from the opera in 2 acts
+- Sextetto from the second act from the opera in 2 acts
+- Singspiel in 1 act
+- Singspiel in 2 acts
+- Singspiel in 2 acts with overture, 12 and 6 numbers
+- Singspiel in 3 acts
+- Singspiel in 3 acts (19 numbers)
+- Singspiel in 3 acts (the end is missing)
+- Singspiel in 4 acts
+- Singspiel in three acts
+- Sketch to the Gloria from the mass (Missa solemnis)
+- Sketch to the finale from the sonata
+- Sketches to minuet and trio from the symphony
+- Sonata movement
+- Sonatina
+- Terzetto and chorus from the oratorio
+- Terzetto from the first act from the opera in 3 parts
+- Terzetto from the opera
+- Terzetto from the opera in 2 acts
+- Terzetto from the opera in 3 acts
+- Theme and 10 variations
+- Theme and 11 variations
+- Theme and 12 variations
+- Theme and 16 variations
+- Theme and 5 variations
+- Theme and 7 variations
+- Theme and six variations
+- Theme with 12 variations
+- Theme with 2 variations
+- Theme with 4 variations
+- Theme with 5 variations
+- Theme with 6 variations
+- Theme with 8 variations
+- Theme with 9 variations
+- Various compositions for strings and pf.
+- Various short pieces
+- Vaudevilles in 12 scenes with 23 airs
+- Version for S and pf
+- Version for T (S) and orchestra
+- Zauberoper in 3 acts
+- Zauberspiel in 2 acts
+- azione teatrale in 1 act
+- choruses for the drama of Shakespeare
+- dramma per musica with 11 arias and 1 Duetti
+- only 1st movement of the concerto
+- only 8 bars on first page, following pages are missing
+- only first and second mouvements
+- only the 1st duet present
+- opera in 1 act
+- opera in 3 acts
+- opera in 3 acts, 3rd act missing
+- opera seria in 3 acts
+- pasticcio (dramma per musica) in 3 acts, first act probably by Gluck, following
+ acts by Lampugnani
diff --git a/housekeeping/upgrade_3.5/508_conversion.yml b/housekeeping/upgrade_3.5/508_conversion.yml
new file mode 100644
index 000000000..13b5b6a6a
--- /dev/null
+++ b/housekeeping/upgrade_3.5/508_conversion.yml
@@ -0,0 +1,1783 @@
+---
+400056247:
+- 'Schreibervermerk am Schluss der Partitur: "Secorno quanto ante Calendas Martias
+ 1821"'
+400056249:
+- 'Schreibervermerk: "D. Lutiger, Eidgenöss. Bettag 1862", "1868", "1870", "1877"'
+400056262:
+- 'Vollständiger Schreibervermerk: "D. Lutiger, Ostern 1858", "1864""1866", "1871",
+ "1881"'
+400056266:
+- 'Schreibervermerke: "D. Lutiger, Tugii ad pentecostes 1864" und "J. Vettiger, 2.
+ Juni 1870"'
+400056273:
+- 'Widmung: "Den verbündeten Monarchen gewidmet"'
+400056274:
+- 'Schreibervermerk: "D. Lutiger, Auf Hohdonnerstag 1862"'
+400056276:
+- 'Schreibervermerk: "D. Lutiger, Auf Charsamstag 1866"'
+400056320:
+- 'Schreibervermerk: "D. Lutiger, Zug im März 1867"'
+400100001:
+- 'Schreibervermerk: "März 1862"'
+400100002:
+- 'Schreibervermerk: "Zug auf Mitte Fasten 1865"'
+400100003:
+- 'Schreibervermerk: "D.Lutiger, Zug im März 1871"'
+400100009:
+- 'Schreibervermerk: "D. Lutiger, Ad Corp. Christi 1879"'
+400100010:
+- 'Schreibervermerk: "D. Lutiger, Zug im Juni 1865"'
+400100023:
+- 'Schreibervermerke: "D. Lutiger: Zug auf Sonntag des 27. Juni 1852, als am Erinnerungsfeste
+ des vor 500 Jahren an diesem Tage erfolgten Eintritts Zug''s in den Schweizer Bund",
+ "Zug auf Ostern 167" und "J. Vettiger, 12. April 1881"'
+- 'Widmung: "Majestati Johannis, [...] Portugalliae, Brasiliae, Algarbiae Regis"'
+400100030:
+- 'Schreibervermerk: "D. Lutiger, Zug am 24. Febr. 1877"'
+400100033:
+- 'Schreibervermerke: "am Feste St. Franziskus 1858" und "D. Lutiger, Zug im Sept.
+ 1865"'
+400100034:
+- 'Schreibervermerke: "19. Febr. 1856" und "D. Lutiger, Secret. 26. März 1858"'
+- 'Widmung: "Rex Augustissime / [...] Majestatis Regiae"'
+400100035:
+- 'Schreibervermerk: "Charsamstag 1866"'
+400100036:
+- 'Schreibervermerk: "D. Lutiger, Auf Fronleichnamsfest 1864"'
+400100037:
+- 'Schreibervermerk: "D. Lutiger, Zug am 22. März 1866"'
+400100038:
+- 'Schreibervermerk: "D. Lutiger, Zug am 22. März 1866"'
+400100039:
+- 'Schreibervermerk: "D. Lutiger, Zug am 22. März 1866"'
+400100040:
+- 'Schreibervermerk: "D. Lutiger, Zug am 22. März 1866"'
+400100041:
+- 'Schreibervermerke: "D. Lutiger, im August 1869" und "D. Lutiger, Zug im Juni 1870"'
+400100042:
+- 'Widmung: "Serenissimo ac Reverendissimo Domino, Francisco Carolo"'
+400100043:
+- 'Schreibervermerk: "[?], Zug am 18. März 1863"'
+- 'Widmung: "Seiner Hochwürden Karl Prugger, Stadtpfarrer zu Donauwörth"'
+400100044:
+- 'Schreibervermerk: "D. Lutiger, Tugii, tempore pastorale 1869"'
+400100045:
+- 'Schreibervermerke: "D. Lutiger, Zug im Sept. 1871" und "D. Lutiger, Zug im Juli
+ 1875"'
+400100046:
+- 'Schreibervermerk: "D. Lutiger, Zug auf Ostern 1872"'
+400100049:
+- 'Schreibervermerke: "D. Lutiger, Cäcilienfest 1856" und "D. Lutiger, 27. Sept. 1877"'
+400100050:
+- 'Schreibervermerk: "D. Lutiger, Zug im März 1867"'
+400100051:
+- 'Schreibervermerke: "J. Vettiger, 9. Mai 1863" und "[?], Zug den 22 December 1864"'
+400100052:
+- 'Schreibervermerke: "D. Lutiger, auf dem zweiten Weihnachtstag 1864" und "Zug im
+ Jänner 1876"'
+400100053:
+- 'Schreibervermerke: "D. Lutiger, Zug im Juni 1871" und "D. Lutiger, Zug im Juni
+ 1876"'
+400100055:
+- 'Schreibervermerk: "D. Lutiger, Zug im August 1872"'
+400100057:
+- 'Schreibervermerke: "D. Lutiger, [...] Ende Mai 1865", "im Jänner 1869" und "J.
+ Vettiger 1 Februar 1870, am Vorabend von Maria Lichtmess"'
+400100058:
+- 'Schreibervermerke: "D. Lutiger, Zug im Juni 1865", "im Jänner 1869" und "im September
+ 1875"'
+400100059:
+- 'Schreibervermerke: "D. Lutiger, Zug am 31. Mai 1865", und "Zug im Jänner 1869"'
+400100060:
+- 'Schreibervermerke: "D. Lutiger, Zug Ende Mai 1865", "Im Jänner 1869" und "25.ten
+ Juni 1867 Jos. Vettiger"'
+400100061:
+- 'Schreibervermerke: "D. Lutiger im Juni 1865", "im Jänner 1869" und "J. Vettiger,
+ 8. Oktober 1876"'
+400100062:
+- 'Schreibervermerke: "D. Lutiger, Zug im Juni 1865", "im Jänner 1869", "22. Nov.
+ 1876"'
+400100063:
+- 'Schreibervermerk: "D. Lutiger, Zug im April 1871"'
+- 'Widmung: "Reverendissimo av Celsissimo COELESTIN Principi et Abbati"'
+400100067:
+- 'Schreibervermerk: "D. Lutiger, 5. März 1878"'
+400100072:
+- 'Schreibervermerke: "Auf Ostern 1864" und "D. Lutiger, auf Ostern, Zug im April
+ 1867"'
+400100074:
+- 'Schreibervermerk: "D. Lutiger, Zug auf die Cäcilienfeier 1873"'
+400100085:
+- 'Schreibervermerke: "L., 25. August 1838", "L., 12 März 1842", "L., 30. März 1842"
+ und "15. 6. 46"'
+400100088:
+- 'Widmung: "Seiner Hochwürden [...] Jos. Ant. Salzmann, Bischof von Basel gewidmet"'
+400100090:
+- 'Widmung: "Sr. Hochwürden Leonard Nussbaum gewidmet"'
+400100091:
+- 'Schreibervermerke: "Zug 27. Juli 1871" und "J. Vettiger, Zug 30. März 1878"'
+- 'Widmung: "Sr. Hochwürden, Andreas Mayr, Dom-Vikar [...] gewidmet"'
+400100098:
+- 'Schreibervermerke: "D. Lutiger, Zug den 1. April 1858", "1859", "1861", "1862",
+ "1875", "1878" und "J. Vettiger, 1875"'
+400100100:
+- 'Schreibervermerk: "D. Lutiger, Zug im Oktober 1870"'
+400100103:
+- 'Schreibervermerke: "Auf Charsamstag 1864"und "D. Lutiger, Auf Charsamstag 1872"'
+400100106:
+- 'Schreibervermerk: "D. Lutiger, Zug im März 1868"'
+400100108:
+- 'Schreibervermerke: "Auf St. Anna 1864", "D. Lutiger, auf St. Anna 1872" und "1876"'
+400100109:
+- 'Schreibervermerk: "D. Lutiger, Zug, auf St. Oswaldsfest 1878"'
+400100110:
+- 'Schreibervermerke: "D. Lutiger, Zug, im Juli 1865" und "Zug, im März 1869"'
+400100111:
+- 'Widmung: "Herrn Jos. Putzenbacher gewidmet"'
+400100113:
+- 'Widmung: "Zum Andenken der verstorbenen Herzogin Anna Charlotte von Curland in
+ Musik gesetzt und der hochherzigen Schwester derselben Elisa van der Recke zugeeignet"'
+- 'Schreibervermerke: "D. Lutiger, Auf Charsamstag den 19. April 1862", "1867" und
+ "1871"'
+400100114:
+- 'Schreibervermerke: "D. Lutiger, Zug auf Charsamstag 1870", "1. April 1874" und
+ "1879"'
+- 'Widmung: "Ihrer Königlichen Hoheit / der Frau / Herzogin von Orlèans"'
+400100117:
+- 'Widmung: "Dem Erzbischof von Wien Joseph Othmar Ritter von Rauscher"'
+400100119:
+- 'Schreibervermerke: "D. Lutiger, Zug im September 1867" und "Zug, den 27. April
+ 1877"'
+400100120:
+- 'Schreibervermerk: "D. Lutiger, Zug im April 1876"'
+400100121:
+- 'Schreibervermerke: "D. Lutiger, Auf Charsamstag 1858", "Cäcilien 1863" und "1875"'
+400100123:
+- 'Widmung: "Reverendissimo ac Jllustrissimo Josepho de Hommer"'
+400100127:
+- 'Schreibervermerke: "D. Lutiger, Zug auf Charsamstag 1868" und "[...] auf Cäcilien
+ 1876"'
+- 'Widmung: "Herrn J.R. Flor Lizenziater b. Rechte in Hamburg gewidmet"'
+400100128:
+- 'Schreibervermerk: "D. Lutiger, Zug im Juni 1868"'
+400100129:
+- 'Schreibervermerk: "D. Lutiger, Zug im Juni 1868"'
+400100130:
+- 'Schreibervermerk: "D. Lutiger, Zug im Juni 1868"'
+400100131:
+- 'Schreibervermerk: "D. Lutiger, Zug im Juni 1868"'
+400100132:
+- 'Schreibervermerk: "D. Lutiger, Tugii ad omnium defunctorum 1872"'
+400100136:
+- 'Schreibervermerke: "28. Juni feliciter 1861" und "D. Lutiger, Zug im Jäner 1867"'
+400100138:
+- 'Schreibervermerk auf der Gesangspartitur: "J. Vettiger, 21. Juli 1882"'
+- 'Widmung: "Gewidmet Herrn Erich Heinrich Verkenius in Cöln"'
+400100140:
+- 'Schreibervermerk: "D. Lutiger, Zug im Jänner 1870"'
+400100143:
+- 'Schreibervermerk: "Jos. Vettiger scripsit 24. Sept. 1841"'
+400100148:
+- 'Schreibervermerke: "Laetare 1856 D. Lutiger, Secretair, 28. Februar 1856" und "5.
+ März"'
+- 'Widmung: "Herrn Ritter Dr. Louis Spohr gewidmet"'
+400100149:
+- 'Schreibervermerk: "D. Lutiger, Zug im März/ April 1872"'
+400100150:
+- 'Schreibervermerk: "D. Lutiger, Zug, den 26. April 1867"'
+400100153:
+- 'Schreibervermerke: "D. Lutiger, Zug im März 1868" und "D. Lutiger, Zug im August
+ 1874"'
+- 'Widmung: "dem Präsidenten der kath. Administration des Standes St. Gallen"'
+400100154:
+- 'Schreibervermerk: "K. Lais, geschrieben im April 1822"'
+- 'Widmung auf der letzten Seite: "der Sängerin Frau Augusta Weber geb: von Düss gewidmet"'
+400100157:
+- 'Schreibervermerke: "März 1862" und "Jos. Vettiger 25. März 1877"'
+400100159:
+- 'Schreibervermerk: "D. Lutiger, Zug im September 1866"'
+- 'Zusatz zum Komponistennamen: "Domkapellmeister in Augsburg"'
+400100160:
+- 'Schreibervermerk: "D. Lutiger, Zug im März 1868"'
+400100161:
+- 'Schreibervermerke: "D. Lutiger, Zug im Juli 1865", "Feb. 1869" und "J. Vettiger,
+ 2. Juni 1882"'
+400100162:
+- 'Schreibervermerk: "D. Lutiger, Zug im Juli 1866"'
+400100163:
+- 'Schreibervermerke: "D. Lutiger, Ende Decembris" "Okt. 1865" "Juni 1870" "Okt. 1871"'
+- 'Widmung: "dem Erzbischofe von Freyburg Dr. Jgnaz Demeter gewidmet"'
+400100164:
+- 'Schreibervermerke: "D. Lutiger, Zug im Jänner 1866" und "30. N.bris 1876 Nachts
+ 1 Uhr"'
+400100165:
+- 'Schreibervermerke: "D. Lutiger, Zug im Juli 1865", "März 1869" und "Jos. Vettiger,
+ April 1880"'
+400100166:
+- 'Schreibervermerk: "D. Lutiger, Zug im März 1866"'
+- 'Widmung: "Herrn Peter Wiesler, dem Abt des Stiftes Marienberg"'
+400100167:
+- 'Schreibervermerk: "D. Lutiger, 1876"'
+400100174:
+- 'Schreibervermerk: "D. Lutiger, Zug im Juni Corpus Christi 1871"'
+400100175:
+- 'Schreibervermerk: "D. Lutiger Zug nach dem Staader Chäässännet, im Sept. 1856"'
+400100180:
+- 'Schreibervermerk: "D. Lutiger, Zug im Jänner 1870"'
+400100181:
+- 'Schreibervermerk: "D. Lutiger, Zug im Jänner 1870"'
+400100182:
+- 'Schreibervermerk: "D. Lutiger, Zug im Jänner 1870"'
+400100183:
+- 'Schreibervermerk: "D. Lutiger, Zug im Jänner 1870"'
+400100185:
+- 'Schreibervermerk: "D. Lutiger, Zug im Jänner 1870"'
+400100188:
+- 'Schreibervermerk: "D. Lutiger, Zug im September 1866"'
+- 'Zusatz zum Komponistennamen: "Domkapellmeister in Augsburg"'
+400100189:
+- 'Schreibervermerk: "D. Lutiger, Zug im September 1866"'
+- 'Zusatz zum Komponistennamen: "Domkapellmeister in Augsburg"'
+400100190:
+- 'Schreibervermerk: "D. Lutiger, Zug im September 1866"'
+- 'Zusatz zum Komponistennamen: "Domkapellmeister in Augsburg"'
+400100191:
+- 'Schreibervermerk: "D. Lutiger, Zug im September 1866"'
+- 'Zusatz zum Komponistennamen: "Domkapellmeister in Augsburg"'
+400100192:
+- 'Schreibervermerk: "D. Lutiger, Zug im Juli 1866"'
+400100193:
+- 'Schreibervermerk: "D. Lutiger, Zug im Juli 1866"'
+400100231:
+- 'Schreibervermerk: "D. Lutiger, Zug im Juli 1868, im Mai 1870"'
+400100232:
+- 'Schreibervermerk: "D. Lutiger, im August 1862", "1867", "im Juni 1870", "1878"'
+- 'Widmung: "Sr. Fürstlichen Gnaden / dem Hochwürdigsten, Hochgeborenen Fürsten und
+ Herrn Herrn / Maximilian Joseph / Erzbischof von Olmütz"'
+400100253:
+- 'Schreibervermerke: "28. Oktober 1879" und "D. Lutiger, auf das hl. Cäcilienfest
+ 1879"'
+400100255:
+- 'Schreibervermerk: "Scripsit Jos. Vettiger./ 10ten März 1858"'
+400100256:
+- 'Schreibervermerke: "li 26 December 1823", 4ten Januar 1824", 3. April 1824" und
+ "1854"'
+400100284:
+- 'Widmung: "Seiner / Majestät dem Könige / Anton / von Sachsen / dem erhabenen Beschützer
+ der Künste und Wissenschaften / in tiefster Unterthänigkeit gewidmet / von Tobias
+ Haslinger"'
+400100425:
+- 'Name des Komponisten in der Quelle vermerkt: "Simbler"'
+400100426:
+- 'Name des Komponisten in der Quelle vermerkt: "Simbler"'
+400100427:
+- 'Name des Komponisten in der Quelle vermerkt: "Simbler"'
+400100602:
+- 'Vermerke am Schluss des Partiturautographs: "Muri, 12. Januar 67" und "für Arthur
+ Eglin [= Widmungsträger]"'
+400100637:
+- 'Widmung auf der ersten Trompetenstimme (in C): "Für Gerhard Aeschbacher / Febr.
+ 78"'
+400100731:
+- 'Schreibervermerk am Schluss von score 2: "Finis 13. Sept. 1863 / P. Sigism. Keller"'
+400100733:
+- 'Schreibervermerk am Schluss von score 2: "Finis 13. Sept. 1863 / P. Sigism. Keller"'
+400101130:
+- 'Vollständiger Widmungstext am Schluss der autographen Stimme: "Heinrich Gurtner
+ zu seinem 60. Geburtstag / von seiner Frau gewidmet."'
+400101153:
+- 'Widmungstext auf dem Titelblatt der Partiturabschrift: "Fritz Indermühle und dem
+ Berner Kammerchor zugeeignet"'
+400101329:
+- 'Widmungsvermerk auf zweiter Umschlagseite der vollständigen Partitur: "Für Helga
+ Paasche."'
+400102603:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "Pearsall"'
+400102617:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "Oehler"'
+400102620:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "Jos. Greith."'
+400102640:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "Carl Greith"'
+400102643:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "Oehler"'
+400102660:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "P. Cochem, 1715"'
+400102666:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH-E 669,11): "Pearsall"'
+400102670:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "Angeblich von Goudimel, Lehrer Palästrina''s."'
+400102677:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "Pearsall"'
+400102681:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "Oehler"'
+400102686:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH-E 669,11): "Oehler"'
+400102694:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "Pearsall"'
+400102715:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH-E 669,11): "Massenus, circa 1550"'
+400102720:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "Oehler"'
+400102742:
+- 'Komponist der Melodievorlagen des Kyrie, Gloria, Credo, Sanctus und Communion gemäss
+ Quellenverzeichnis in der vierten Lieferung (vergleiche CH E 669,11): "Pearsall"'
+400102743:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "Pearsall"'
+400102748:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis in der vierten Lieferung
+ (vergleiche CH E 669,11): "Pearsall"'
+400102759:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis: "Pearsall"'
+400102760:
+- 'Komponist der Melodievorlage gemäss Quellenverzeichnis: "Pearsall"'
+400104417:
+- 'Partitur, Widmung oben auf p.2: "Herrn D.|r H. von Bülow."'
+400104425:
+- 'Widmung auf p. 2, oben: "Frau Clara Schumann in Verehrung zugeeignet."'
+400104788:
+- 'Widmung auf dem Vorsatzblatt: "Dem / Eidgenössischen Sängerverein / gewidmet."'
+400107122:
+- 'Associated name: Stehle, J[ohann] G[ustav] E[duard]'
+- 'Handschriftliche Widmung auf dem Titelblatt: "Meinem hochw. Pfarrherrn gewidmet
+ / vom / Chordirigenten"'
+400107231:
+- 'Handschriftliche Widmung des Komponisten auf dem Titelblatt: "Seinem verehrten
+ Freunde Herrn G. E. Stehle / [unleserlich] der Autor."'
+400108059:
+- 'T, Vermerk am Schluss: "Sc. D. Herzog / 1851"'
+400108063:
+- 'A, Vermerk am Schluss: "Scripsit Jos: Ant: Haegÿ. 1847"'
+400108065:
+- 'B, Vermerk am Schluss: "Scrips. D. Herzog Chorreg. Münster / 1851"'
+400108124:
+- 'T, Vermerk am Schluss: "Scripsit Jos: Ant: Haegÿ 1845"'
+400108149:
+- 'vl 1: Als Werk von Paul Caspar Schobacher verzeichnet'
+400108350:
+- 'org, Vermerk am Schluss: "Script. anno 1849 Dec. / a / Dom. Herzog / Chorregent."'
+400108563:
+- 'Vermerk am Schluss: "Copist N. Estermann 16. VIII. 73"'
+400108709:
+- 'Handschriftliche Widmung des Komponisten unten auf dem Titelblatt der Partitur:
+ "Herrn Chorregent Herzog / zur freundlichen Erinnerung / an den Verfasser."'
+400108845:
+- 'Widmung auf p.1 der Partitur: "Rev:mo Can: Prof. Francisco de Felice amantissime
+ dicata."'
+400109493:
+- 'Widmung auf dem Vorsatzblatt: "Suae / Regiae celsitudini / Illustrissimae Principi
+ / Josephinae de Hohenzollern / devotissime dedicavit / Autor."'
+400110173:
+- 'Widmung auf dem vorderen Vorsatzblatt: "Seiner Bischöflichen Gnaden / dem hochwürdigsten
+ Herrn / Leonhard Haas / Bischof von Basel und Lugano / ehrerbietigst gewidmet /
+ vom Komponisten."'
+400110360:
+- 'Datierungsvermerk am Schluss der Stimmen: "Scripsit Jos: Ant: Haegÿ 1847"'
+400110400:
+- 'Widmung auf dem Titelblatt der B-Stimme: "Sr. Hochwürden Herrn / P. Gall Morel
+ / Studien-Rector und Capitular des hochwürdigen Stiftes Maria-Einsiedeln / in tiefster
+ Verehrung gewidmet"'
+400111124:
+- 'Widmung auf dem Vorsatzblatt: "Seiner Hochfürstlichen Durchlaucht / dem regierenden
+ / Fürsten Albert von Thurn und Taxis, / Herzog zu Wörth und Donaustauf, / und /
+ Ihrer Kaiserlichen und Königlichen Hoheit / Frau Fürstin Margarethte von Thurn und
+ Taxis, / geb. Erzherzogin von Österreich / in tiefster Ehrfurcht / gewidmet."'
+400111135:
+- 'Widmung auf dem Vorsatzblatt: "Eminentissimo Domino et Principi / Vincentio Cardinali
+ Vanutelli, Episcopo urbis Palestrinae / d d d / Hermannus Bäuerle / Serenissimi
+ Principis de Thurn et Taxis, Ducis in Woerth et Donaustauf / presbyter aulicus."'
+400111146:
+- 'Widmung auf dem Vorsatzblatt: "Sanctissimo Patri / Pio X Papae / ad piam memoriam
+ diei 4. Augusti 1903 / filiali cum veneratione / d d d / Hermannus Bäuerle / Serenissimi
+ Principis de Thurn et Taxis, Ducis in Woerth et Donaustauf / capellanus aulicus."'
+400111215:
+- 'Widmung auf dem Vorsatzblatt: "Seiner Hochwürden, / Herrn Ludwig Nissl, / k. bayer.
+ geistlichem Rathe; Ehren-Canonicus und Director des St. Joh. Nep. Priesterhauses
+ und des Domchor- / Knabeninstitutes zu München, / hochachtungsvollst gewidmet /
+ vom/ Herausgeber."'
+400112850:
+- 'Name des Komponisten zu Beginn der Orgelstimme: "Bachschmid"'
+400112885:
+- 'vl 1, Schreibervermerk am Schluss: "Scripsit Leonz Nussbaumer / 1802."'
+400150001:
+- 'Vermerk am Schluss des einsätzigen Werkes: "Olga Diener".'
+400150002:
+- 'Vermerk am Schluss: "Olga Diener".'
+400150003:
+- 'Vermerk am Schluss des einsätzigen Werkes: "Olga Diener".'
+400150006:
+- 'Vermerk am Schluss des einsätzigen Werkes: "Olga Diener".'
+400150007:
+- 'Vermerk am Schluss: "Olga Diener".'
+400150008:
+- 'Vermerk am Schluss des einsätzigen Werkes: "Olga Diener".'
+401000003:
+- 'Widmung: "Ernst und Hedi Schweri in Dankbarkeit zugeeignet"'
+401000032:
+- 'Widmung: "Hans Reinhart in Verehrung zugeeignet"'
+401000046:
+- 'Widmung im Druck: "Für Ute Stoecklin"'
+401000047:
+- 'Widmung im Druck: "Für Ute Stoecklin"'
+401000048:
+- 'Widmung im Druck: "Für Ute Stoecklin"'
+401000051:
+- 'Oben rechts auf der ersten Seite: autographer Bleistiftvermerk "korrigiert Mai
+ 95"'
+401000071:
+- 'Widmung: "In Memoriam Werner Stoecklin"'
+401000072:
+- 'Widmung: "Dr. Werner Reinhard zugeeignet"'
+401000079:
+- 'Wimung: "Meinem Freunde, Dr. med. Philipp Zinsli zugeeignet"'
+401000089:
+- 'Widmung: "Meiner lieben Frau Claudia zugeeignet"'
+401000107:
+- 'Widmung: "Werner Stoecklin zugeeignet"'
+401000141:
+- 'Widmung auf der ersten Seite: "Stefania Huonder und Beatrice Kurth / zugeeignet"'
+401000162:
+- 'pf: am Ende der Komposition vom Komponisten signiert'
+401000179:
+- 'org: am Ende mit Rotstift und von anderer Hand: "P. Martin Gander"'
+401000220:
+- 'scores: von gleicher Hand; parts: von anderer Hand'
+401000280:
+- 'Partitur: Widmung auf Titelblatt: "Seiner Hochwürden Herrn P. Beat Winterhalter
+ O.S.B. Kapitularen des Stiftes Disentis zur Erinnerung an den 29. u. 30. Aug. 1920
+ im Cistercienserinnen-Stifte Wurmsbach am Zürichsee. Pater Eberhard Steinbauer O.
+ Cist., Stiftskapitular von Heiligenkreuz und Neukloster, z. Zeit Pfarrer von Sulz
+ im Wienerwald, [andere Hände:] Fritz Pruscher, Michael Breitfellner, stud. gymn."'
+401000348:
+- 'org: Schreibervermerk am Ende der Komposition "R. P. Augusttinus conscripsit" [vermutlich
+ Pater Augustinus Schuoler]'
+401000354:
+- 'Schreibervermerke am Ende der Komposition im Material: "Collecta et conscripta
+ á R. P. Augustino Schuoler, Engelberg" (org or vlne), "P. Augustinus Schuoler" (B),
+ "Collecta et conscripta a R. P. A. S. E." (vl 1)'
+401000673:
+- 'Komponist: Leo Kunz (vergleiche Fassung für gemischten Chor und Orgel mit Nachweis
+ des Komponisten, CH D: ML 1902)'
+401000689:
+- 'Claude-Joseph Rouget de Lisle: Komponist der Melodie-Vorlage zur Komposition von
+ Leo Kunz'
+401000690:
+- 'E. Kunz: Emil Kunz (bürgerlicher Name), später Pater Leo Kunz (geistlicher Name)'
+401000700:
+- 'E. Kunz: Emil Kunz (bürgerlicher Name von Pater Leo Kunz)'
+401000702:
+- 'Komponist: Leo Kunz, vergleiche die abweichende Fassung "Gruss aus Disentis" (CH-D
+ ML 1925b), die mit Angabe des Komponisten versehen ist'
+401000735:
+- 'gleicher Schreiber wie CH: D ML 1954'
+401000741:
+- 'Material in Mappe mit Aufschrift: "P. Basil Breitenbach, Responsorien f. d. Charwoche.
+ 4stim. gem. Chor a cap...."'
+401001015:
+- 'Widmungstext auf Seite 1: "In Memoriam Adolf Herbst"'
+401001020:
+- 'Widmungstext auf zweitem Exemplar einer Fotokopie: "Albert Bolliger gewidmet"'
+401001023:
+- 'Widmungstext auf Seite 1: "Meinem Freunde, Philipp Zinsli zugeeignet"'
+401001025:
+- 'Widmungstext auf Seite 1: "Meinem Freunde Dr. med. Philipp Zinsli zugeeignet"'
+401001268:
+- 'chorus score: von zwei verschiedenen Händen'
+401001275:
+- 'Komponist: vermutlich Max Welcker (im Bestand von CH-Mü sind gedruckte Werke von
+ Max Welcker vorhanden)'
+401001312:
+- 'Komponist: vermutlich P. Meurers, der Komponist des ersten Werks der Sammelhandschrift'
+401001313:
+- 'Komponist: vermutlich P. Meurers, der Komponist des ersten Werks der Sammelhandschrift'
+401001314:
+- 'Komponist: vermutlich P. Meurers, der Komponist des ersten Werks der Sammelhandschrift'
+401001344:
+- 'Komponist: vermutlich Alfons Braun (im Bestand von CH-Mö ist ein gedrucktes Werk
+ von Alfons Braun vorhanden)'
+401001438:
+- 'Komponist: vermutlich Leonissa Kliebenschädl (im Bestand CH Mö liegt ein anderes
+ Werk dieser Komponistin, dort mit Angabe des vollständigen Namens)'
+401001453:
+- 'Komponist: vermutlich Alois Bauer (Material von der gleichen Hand wie Ms B 101)'
+401001454:
+- 'Komponist: vermutlich Alois Bauer (Material von der gleichen Hand wie Ms B 101)'
+401001470:
+- 'vl 1: am Ende vom Schreiber signiert "B. Spin schribsit"; vl 2: am Ende vom Schreiber
+ datiert und signiert "li 12 giunio 1833 Biaggio Spin. Adjunto"'
+401001503:
+- 'org: am Ende vom Schreiber datiert und signiert: "Montan am 7. August 1862. Bl.
+ Spin [...unleserlich]"'
+401001507:
+- 'org: am Ende vom Schreiber datiert und signiert: "Fer. II. Pentecost. 21. Maji
+ 1866. P. V. L."'
+401001510:
+- 'org: am Ende vom Schreiber datiert und signiert: "Afing am 2. Septber 1846 geschrieben
+ v. B. Spin Org."'
+401001512:
+- 'org: am Ende vom Schreiber datiert und signiert: "Afing am 29. August 1846. geschrieben
+ Bl. Spin, Org. daselbst"'
+401001513:
+- 'org: am Ende von N|o 6 vom Schreiber datiert und signiert: "Afing am 30. August
+ 1846 geschrieben von B. Spin Org. daselbst."'
+401001539:
+- 'org: am Ende Hinweis: "Companiert von Franz öberbacher auf den Ritten."'
+401001553:
+- 'org (= bc.fig): ausgeschriebener Orgelsatz mit beziffertem Bass; am Ende vom Schreiber
+ datiert und signiert: "Afing am 17. August 1846 Spin cèa scribsit."'
+401001584:
+- 'org with text: am Ende vom Schreiber signiert und datiert: "schribsit Blasius Spin
+ li 30 Agosto 1833."'
+- 'S 2: am Ende vom Schreiber signiert: "Spin Blasius D"'
+402000021:
+- 'score 2, Vorsatzblatt: "Meinem lieben Enkel / Martin Kaul / zum freundlichen Gedenken.
+ / 19. Februar 1965. Dein Grossvater / Max Methfessel"'
+402000068:
+- 'Name des Textverfassers am Schluss des Notentextes: "Pfr. Sprüngli."'
+402000069:
+- 'Name des Textverfassers am Schluss des Notentextes: "A. Corrodi"'
+402000072:
+- 'Name des Textverfassers am Schluß: "J. Kübler, Pfr."'
+402000073:
+- 'Name des Textverfassers am Schluss des Notentextes: "J. Stutz"'
+402000074:
+- 'Name des Textverfassers am Schluss des Notentextes: "J. Stutz"'
+402000077:
+- 'Name des Textverfassers am Schluss des Notentextes: "Hoffmann von Fallersleben"'
+402000086:
+- 'Name des Textverfassers am Schluss des Notentextes: "H. J. Bosshardt."'
+402000087:
+- 'Angaben zum Textverfasser am Schluss des Notentextes: "H. Rüegg in Enge."'
+402000090:
+- 'Name des Textverfassers am Schluss des Notentextes: "Müller von der Werra."'
+402000091:
+- 'Name des Textverfassers am Schluss des Notentextes: "R. Ringier."'
+402000093:
+- 'Name des Textverfassers am Schluss des Notentextes: "L. Wächter."'
+402000094:
+- 'Name des Textverfassers am Schluss des Notentextes: "E. M. Arndt."'
+402000095:
+- 'Name des Textverfassers am Schluss des Notentextes: "Chr. F. Weisse."'
+402000096:
+- 'Name des Textverfassers am Schluss des Notentextes: "Krummacher."'
+402000097:
+- 'Name des Textverfassers am Schluss des Notentextes: "J. C. Ranny."'
+402000098:
+- 'Name des Textverfassers am Schluss des Notentextes: "Claudius."'
+402000099:
+- 'Name des Textverfassers am Schluss des Notentextes: "Müller, W."'
+402000100:
+- 'Name des Textverfassers am Schluss des Notentextes: "Hoffmann v. Fallersleben."'
+402000101:
+- 'Name des Textverfassers am Schluss des Notentextes: "Otto v. Loeben."'
+402000102:
+- 'Angaben zum Textverfasser am Schluss des Notentextes: "Vogel von Glarus."'
+402000103:
+- 'Name des Textverfassers am Schluss des Notentextes: "Eichendorff."'
+402000104:
+- '2 Textstrophen sind unterlegt, 2 weitere folgen auf p.40 mit Angabe des Textautors:
+ "J. Stutz."'
+402000105:
+- 'Name des Textverfassers am Schluss des Notentextes: "Kamp."'
+402000106:
+- 'Name des Textverfassers am Schluss des Notentextes: "K. Chr. Tanner."'
+402000107:
+- 'Name des Textverfassers am Schluss des Notentextes: "Vogel."'
+402000109:
+- 'Name des Textverfassers am Schluss des Notentextes: "Fr. Oser."'
+402000110:
+- '2 Textstrophen sind unterlegt, 3 weitere folgen auf p.50 mit Angabe des Textautors:
+ "Gellert."'
+402000111:
+- 'Am Ende von p.53, mit Bleistift: "August Becker."'
+402000112:
+- 'Name des Textverfassers am Schluss des Notentextes: "Deinhardstein."'
+402000113:
+- 'Name des Textverfassers am Schluss des Notentextes: "J. R. Vogel."'
+402000114:
+- 'Name des Textverfassers am Schluss des Notentextes: "Bierbaum."'
+402000115:
+- 'Name der Textverfasserin am Schluss des Notentextes: "Pauline Dietschi."'
+402000116:
+- 'Name des Textverfassers am Schluss des Notentextes: "Friedrichs."'
+402000117:
+- 'Name des Textverfassers nach 5. Strophe: "J. Sigismund."'
+402000118:
+- 'Name des Textverfassers am Schluss des Notentextes: "Haug."'
+402000119:
+- 'Name des Textverfassers am Schluss des Notentextes: "H. A. Hoffmann von Fallersleben."'
+402000121:
+- 'Strophen 2 bis 4 folgen auf p.71 mit Angabe des Textverfassers: "Gabriel Seidl."'
+402000122:
+- 'Name des Textverfassers am Schluss des Notentextes: "J. Falk."'
+402000123:
+- 'Name des Textverfassers am Schluss des Notentextes: "L. v. Plönnius."'
+402000124:
+- 'Name des Textverfassers am Schluss des Notentextes: "Sigismund, J."'
+402000125:
+- 'Die Textstrophen 2 bis 4 folgen auf p.80 mit Angabe des Textverfassers: "Fr. Oser."'
+402000183:
+- 'Name des Textverfassers am Schluss des Notentextes: "Gellert."'
+402000197:
+- 'Name des Textverfassers am Schluss des Notentextes: "Magenau."'
+402000198:
+- 'Namen der Textverfasser am Schluss des Notentextes: "V[ers]. 1. v. Göthe. / V[erse].
+ 2. u. 3. v. Falk."'
+402000199:
+- 'Name des Textverfassers am Schluss des Notentextes: "Lindner."'
+402000201:
+- 'Name des Textverfassers am Schluss des Notentextes: "Gerock."'
+402000202:
+- 'Name des Textverfassers am Schluss des Notentextes: "R. Decius."'
+402000203:
+- 'Name des Textverfassers am Schluss des Notentextes: "Martin Luther."'
+402000206:
+- 'Name des Textverfassers am Schluss des Notentextes: "Mahlmann."'
+402000208:
+- 'Name des Textverfassers am Schluss des Notentextes: "A. v. Berlepsch."'
+402000210:
+- 'Name des Textverfassers am Schluss des Notentextes: "F. Oser."'
+402000214:
+- 'Name des Textverfassers am Schluss des Notentextes: "L. Widmer."'
+402000218:
+- 'Name des Textverfassers am Schluss des Notentextes: "E. Geibel."'
+402000227:
+- 'Name des Textverfassers am Schluss des Notentextes: "J. J. Sprüngli."'
+402000230:
+- 'Name des Textverfassers am Schluss des Notentextes: "J. N. Vogel."'
+402000236:
+- 'Name des Textverfassers am Schluss des Notentextes: "Hoffmann v. Fallersleben."'
+402000237:
+- 'Name des Textverfassers am Schluss des Notentextes: "Hoffmann v. Fallersleben."'
+402000240:
+- 'Name des Textverfassers am Schluss des Notentextes: "Reinick."'
+402000251:
+- 'Name des Textverfassers am Schluss des Notentextes: "Eichendorff."'
+402000253:
+- 'Name des Textverfassers am Schluss des Notentextes: "E. Geibel."'
+402000254:
+- 'Name des Textverfassers am Schluss des Notentextes: "E. Freiherr v. Feuchtersleben."'
+402000256:
+- 'Name des Textverfassers am Schluss des Notentextes: "A. Disselhof."'
+402000257:
+- 'Name des Textverfassers am Schluss des Notentextes: "E. Geibel."'
+402000260:
+- 'Name des Textverfassers am Schluss des Notentextes: "Kotzebue."'
+402000261:
+- 'Name des Textverfassers am Schluss des Notentextes: "F. Gleich."'
+402000269:
+- 'Name des Textverfassers am Schluss des Notentextes: "Geibel."'
+402000271:
+- 'Name des Textverfassers am Schluss des Notentextes: "E. Geibel."'
+402000272:
+- 'Name des Textverfassers am Schluss des Notentextes: "J. L. Uhland."'
+402000273:
+- 'Name des Textverfassers am Schluss des Notentextes: "Arndt."'
+402000289:
+- 'Name des Textverfassers am Schluss des Notentextes: "Hölty."'
+402000290:
+- 'Name des Textverfassers am Schluss des Notentextes: "Kotzebue."'
+402000291:
+- 'Name des Textverfassers am Schluss des Notentextes: "Helmine von Chezy."'
+402000292:
+- 'Hinweis am Schluss des Notentextes: "(V. 1 aus Egmont v. Göthe, V. 2 u. 3. nach
+ Göthe.)"'
+402000297:
+- 'Name des Textverfassers am Schluss des Notentextes: "Hoffmann v. Fallersleben."'
+402000298:
+- 'Name des Textverfassers am Schluss des Notentextes: "Dr. Weismann."'
+402000300:
+- 'Name des Textverfassers am Schluss des Notentextes: "Spr."'
+402000303:
+- 'Name des Textverfassers am Schluss es Notentextes: "Pfr. Sprüngli."'
+402000304:
+- 'Name des Textverfassers am Schluss des Notentextes: "Pfr. Sprüngli."'
+402000305:
+- 'Name des Textverfassers am Schluss des Notentextes: "Pfr. Sprüngli."'
+402000307:
+- 'Name des Textverfassers am Schluss des Notentextes: "Uhland."'
+402000311:
+- 'Name des Textverfassers am Schluss des Notentextes: "Dr. Strass."'
+402000314:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Th. Adalbert Schröder."'
+402000316:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Carl Göttling."'
+402000317:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "C. Gottlob Cramer."'
+402000318:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Chemnitz."'
+402000319:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Claudius."'
+402000321:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Römer."'
+402000322:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "M. v. Schenkendorf."'
+402000323:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "E. M. Arndt."'
+402000324:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Dr. Bärmann."'
+402000325:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Hoffmann v. Fallersleben."'
+402000326:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Th. Körner."'
+402000327:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Th. Körner."'
+402000328:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "C. Göttling."'
+402000330:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "L. Uhland."'
+402000331:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "H. F. Massmann."'
+402000332:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Ad. Glassbrenner."'
+402000333:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Goethe."'
+402000334:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "W. Hauff."'
+402000336:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Schmidt v. Lübeck."'
+402000337:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Ad. Glassbrenner."'
+402000338:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "E. M. Arndt."'
+402000339:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Julius Mosen."'
+402000340:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Th. Körner."'
+402000341:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Hoffmann von Fallersleben."'
+402000343:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Hoffmann von Fallersleben."'
+402000344:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "A. Methfessel."'
+402000345:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "E. M. Arndt."'
+402000347:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Max v. Schenkendorf."'
+402000348:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "W. Gerhard."'
+402000349:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Justinus Kerner."'
+402000351:
+- 'Name des Textverfassers im Anschluss an die letzte Textstrophe: "Mebold."'
+402001184:
+- 'Komponistenvermerk zu Beginn der Skizze: "H. G. Goetz"'
+402001391:
+- 'Gedruckte Widmung auf Vorsatzblatt: "Seiner Excellenz / dem Königlichen General-Lieutenant,
+ Chef der Ingenieure und Pioniere, / und General-Inspecteur der Festungen, / Ritter
+ höchster Orden etc. etc. / Herrn Aster / in wahrer Hochachtung zugeeignet / vom
+ Verfasser."'
+402002575:
+- 'Page de titre: lithographie de A. Chuvard'
+402002585:
+- 'Page de titre: annotation de H[enri] R[everdin]: "[offert á ma chère Octavie] qui
+ épousa / le peintre français Henri Baron / H. R."'
+402002830:
+- 'Fin de la musique: signature du compositeur "Ch. Bovy"'
+402002914:
+- 'Page de titre: lithographie de "A. BARBIZET"'
+- 'Lithograph: Barbizet, A.'
+402002918:
+- 'Page de titre: lithographie de E. Samary'
+- 'p.1, au pied de la page: "13|e degré des tablettes du Pianiste de H. LEMOINE"'
+402002919:
+- 'Page de titre: lithographie de A. Vialon'
+402002924:
+- 'Page de titre: lithographie de A. Vialon'
+- 'p.1, en bas de page: "13|e degré des tablettes du Pianiste de H. LEMOINE."'
+402002926:
+- 'Page de titre: lithographie de A. Vialon'
+- 'p.1, en bas de page: "15|e degré des Tablettes du Pianiste de Hry LEMOINE"'
+402002927:
+- 'Page de titre: lithographie de A. Villée'
+- 'Page de titre, en bas: "PARIS, chez PACINI (BONOLDI Frères, Successeurs.)"'
+402002928:
+- 'Page de titre: lithographie de A. V[ialon]'
+402002930:
+- 'p.1, en bas de page: "12|e degré du musicometre [...] des tablettes du pianiste
+ de H. LEMOINE."'
+402002935:
+- 'Page de titre: lithographie de A. Chuvard'
+402002938:
+- 'Page de titre: lithographie de A. Emerique'
+402002939:
+- 'Page de titre: lithographie de Rob. Krause'
+402002942:
+- 'Page de titre: lithographie de A. Vialon'
+- 'p.1, en bas de page: "13|e Degré des Tablettes du Pianiste Hry LEMOINE."'
+402002948:
+- 'Page de titre: lithographie de A. V[ialon]'
+402002960:
+- 'Page de titre: lithographie de A. Vialon'
+402002963:
+- 'p.1, en bas de page: "14|e degré des Tablettes du Pianiste de Hry LEMOINE."'
+402002979:
+- 'p.5, en bas de page: "9|e degré des tablettes du Pianiste de H. LEMOINE."'
+402002981:
+- 'p.1, en bas de page: "13|e degré des tablettes du Pianiste de H. LEMOINE."'
+402002984:
+- 'p.1, en bas de page: "15|e degré des Tablettes du Pianiste de Hry LEMOINE."'
+402002987:
+- 'Page de titre: lithographie de Alfred Lemoine'
+- 'Avant la musique: fragments (2p.) extraits d''une notice biographique inédite sur
+ Bovy-Lysberg, par Charles Read'
+402002988:
+- 'Page de titre: lithographie de A. Barbizet'
+402002997:
+- 'Page de titre: lithographie de E. Samary'
+- 'p.1, en bas de page: "13|e degré du musicomètre des tablettes du pianiste de H.
+ LEMOINE."'
+402003003:
+- 'p.1, á gauche et á droite du titre: "Choeur / Musique de Lysberg[...] Poésie de
+ Musset?" (écrit au crayon)'
+402003004:
+- 'p.3, á droite du titre: "Lysberg" (écrit au crayon)'
+402003005:
+- 'p.4, á droite du titre: "Lysberg" (écrit au crayon)'
+402003006:
+- 'p.4, á gauche du titre: "Lysberg" (écrit au crayon)'
+402003007:
+- 'p.6, á gauche du titre: "Lysberg" (écrit au crayon)'
+402003010:
+- 'p.3, en haut á gauche: "par Lysberg" (écrit au crayon)'
+402003012:
+- 'Page de titre: lithographie de A. Vialon'
+402003015:
+- 'Page de titre: lithographie de A. Barbizet'
+402003026:
+- 'p.1, en bas de page: "12|e degré du musicometre des tablettes / du pianiste de
+ H. LEMOINE."'
+402003030:
+- 'p.1, en bas de page: "12|e degré du musicometre [...] des tablettes du pianiste
+ de H. LEMOINE."'
+402003033:
+- 'p.1, en bas de page: "15|e degré du musicometre des tablettes / du pianiste de
+ H. LEMOINE."'
+- 'Page de titre: lithographie de E. Samary'
+402003034:
+- 'p.1, en bas de page: "15|e degré des tablettes du Pianiste de H. LEMOINE."'
+- 'Page de titre: lithographie de A. Vialon'
+402003035:
+- 'p.1, en bas de page: "8|e degré des tablettes du pianiste de H. LEMOINE."'
+- 'Page de titre: lithographie de A. Vialon'
+402003039:
+- 'Page de titre: lithographie de A. Barbizet'
+402003040:
+- 'Page de titre: lithographie de A. Barbizet'
+402003042:
+- 'Page de titre: lithographie de A. Barbizet'
+402003049:
+- 'Page de titre: lithographie de Alfred Lemoine'
+- 'Avant la musique: fragments (2p.) extraits d''une notice biographique inédite sur
+ Bovy-Lysberg, par M. Ch. Read'
+402003050:
+- 'Page de titre: lithographie de Alfred Lemoine'
+- 'Avant la musique: fragments (2p.) extraits d''une notice biographique inédite sur
+ Bovy-Lysberg, par Charles Read'
+402003069:
+- 'Parite de Contralto, en bas de page, á droite: "autographié / Colliond-Tissot /
+ á Vevey"'
+402003093:
+- 'Verso de la page de titre: "Note (1) Clémence Isaure, célèbre femme-poète, institua
+ dans le 14|e Siècle le Jeux flo= / raux á Toulouse, sa patrie - Ces jeux se célèbrent
+ tous les ans au mois de Mai; on prononce / son éloge et l''on couronne de fleurs
+ sa statue - Clémence Isaure a perpétué la célébration des Jeux / floraux en laissant
+ de grands biens á la ville de Tolouse et en créant des prix pour / les poètes qui
+ auraient le mieux réussi dans chaque genre de poésie - Ces prix sont une / Violette
+ d''argent, un Souci de même métal, une Eglantine et une Amarante d''or. / Dictionnaire
+ historique."'
+402003118:
+- 'En bas de la page de titre: "Note (1) Clémence Isaure, célèbre femme-poète, institua
+ dans le 14|e Siècle le Jeux floraux á Tolouse, se patrie. / Ces jeux se célèbrent
+ tous les ans au mois de Mai; on prononce son éloge et l''on couronne de fleurs sa
+ Statue. - Clém-Isaure / a perpétué la célébration des Jeux floraux en laissant
+ de grands biens á la ville de Toulouse, et en créant des prix pour les / poètes
+ qui auraient le mieux réussi dans chaque genre de poésie. - Ces prix sont une Violette
+ d''argent, un Souci de même métal, une Eglantine et une Amarante d''or. = Dictionnaire
+ historique"'
+402003125:
+- 'p.1, en bas de page: "Note (+) Clémence Isaure, célèbre femme-poète, institua dans
+ le 14|e Siècle le Jeux floraux, á Toulouse, se patrie - Ces jeux se célèbrent tous
+ les ans au mois de Mai"'
+402003181:
+- 'Vokalstimmen: Vermerk am Ende der Komposition: "Diese, sowie die Nummern 3 und
+ 8 wurden mit Bewilligung des Original=Verlegers, Herrn F. Goepel, in Stuttgart,
+ / diesem Gesang-Journal einverleibt."'
+402003183:
+- 'Vokalstimmen: Vermerk am Ende der Komposition: "Diese, sowie die Nummern 3 und
+ 8 wurden mit Bewilligung des Original=Verlegers, Herrn F. Goepel, in Stuttgart,
+ / diesem Gesang-Journal einverleibt."'
+402003188:
+- 'Stimmen: Vermerk am Ende der Komposition: "Diese, sowie die Nummern 3 und 8 wurden
+ mit Bewilligung des Original=Verlegers, Herrn F. Goepel, in Stuttgart, / diesem
+ Gesang-Journal einverleibt."'
+402003195:
+- 'Am Ende der Komposition: "v. Malsburg."'
+402003196:
+- 'Am Ende der Seite 3: "Kosegarten."'
+402003198:
+- 'Am Ende der Komposition: "Rese"'
+402003199:
+- 'Am Ende der Komposition: "Haug"'
+402003200:
+- 'Am Ende der Komposition: "Mahlmann."'
+402003201:
+- 'Am Ende der Komposition: "Grüneisen."'
+402003202:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003204:
+- 'Am Ende der Komposition: "Grüneisen."'
+402003205:
+- 'Am Ende der Komposition: "Nägeli."'
+402003206:
+- 'Am Ende der Komposition: "Bouterweck."'
+402003207:
+- 'Am Ende der Komposition: "Friederike Brun. g. Münter."'
+402003208:
+- 'Am Ende der Komposition: "Hofmann."'
+402003209:
+- 'Am Ende der Komposition: "Salis."'
+402003210:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003665:
+- 'Am Ende der Komposition: "Dichtung von Ludwig Tobler in Bern."'
+402003673:
+- 'Partitur: am Ende der Komposition: "Der Abend von Claudius"'
+402003701:
+- 'Vokalstimme: am Ende der Komposition: "Blaesi"'
+402003706:
+- 'Vermerk am Ende der Komposition: "K[arl]. Munzinger. / sc. 26 Jänn. 59."'
+402003709:
+- 'Partitur: handschriftlicher Vermerk (mit Bleistift) oben links auf der Seite 1:
+ "von Karl Munzinger."'
+402003723:
+- 'Vermerk auf der Seite 2 unten: "Anmerkung. In der zweiten Hälfte der 1850er Jahren
+ wurde an der Kantonsschule von Solothurn ein / die überlieferte Bewegungsfreiheit
+ der höheren Schüler ("Studenten") erheblich einschränkendes Reglement / eingeführt.
+ Die Mittglieder der Solothurner Sektion der "Neu-Zofingia", wie damals die vorüber
+ / gehend mit der "Helvetia" fusionirte "Zofingia" hieß, empfanden diese Fesseln
+ besonders unangenehm. / Als Carl Munzinger, deßen Vereinsname Blondel war (nach
+ Blondel, dem Sänger des Königs Richard Löwenherz) / im Herbst 1859 Solothurn verließt,
+ um sich an die Universität Basel zu begeben vertonte er den von / seinem Vereinsbruder
+ (Leu) verfaßten, als Kampfruf gegen das verhaßte "Reglement" gedachten, / vorliegenden
+ Text zu einem Männerchor. Er wiedmete ihn der "Neu-Zofingia". Es ist ein Freiheits-
+ / sang in des Wortes verwegenstem Sinne. Tempora mutantur - nos et mutamur in illis!
+ / Bern, im October 1911. / Dr. Leo Weber"'
+402003731:
+- 'Am Ende der Komposition: "Bahnmayer. / Cäcilia."'
+402003734:
+- 'Am Ende der Komposition: "Kanne. / Liedersammlung."'
+402003736:
+- 'Am Ende der Komposition: "Kambach. / Anthologie."'
+402003737:
+- 'Am Ende der Komposition: "Bahnmayer. / Cäcilia."'
+402003739:
+- 'Am Ende der Komposition: "Kanne. / Liedersammlung."'
+402003741:
+- 'Am Ende der Komposition: "Haug."'
+402003743:
+- 'Am Ende der Komposition: "Krummacher."'
+402003744:
+- 'Am Ende der Komposition: "Neuffer."'
+402003745:
+- 'Am Ende der Komposition: "Bahmayer. (Cäcilia.)"'
+402003746:
+- 'Am Ende der Komposition: "Eschenburg."'
+402003747:
+- 'Am Ende der Komposition: "Neuffer."'
+402003748:
+- 'Am Ende der Komposition: "Demme."'
+402003749:
+- 'Am Ende der Komposition: "Cramer."'
+402003750:
+- 'Am Ende der Komposition: "Magenau."'
+402003751:
+- 'Am Ende der Komposition: "Cramer."'
+402003752:
+- 'Am Ende der Komposition: "Neuffer."'
+402003753:
+- 'Am Ende der Komposition: "Bahnmayer. / (Cäcilia.)"'
+402003754:
+- 'Am Ende der Komposition: "Neuffer."'
+402003756:
+- 'Am Ende der Komposition: "Haug."'
+402003757:
+- 'Am Ende der Komposition: "Cramer."'
+402003759:
+- 'Am Ende der Komposition: "Sieber."'
+402003760:
+- 'Am Ende der Komposition: "Sturm."'
+402003761:
+- 'Am Ende der Komposition: "J. J. Hegner."'
+402003762:
+- 'Am Ende der Komposition: "Fink."'
+402003763:
+- 'Am Ende der Komposition: "Uz."'
+402003764:
+- 'Am Ende der Komposition: "Sturm."'
+402003765:
+- 'Am Ende der Komposition: "Bahnmayer."'
+402003766:
+- 'Am Ende der Komposition: "v. Meyer."'
+402003767:
+- 'Am Ende der Komposition: "Bahnmayer."'
+402003769:
+- 'Am Ende der Komposition: "Sarvey."'
+402003770:
+- 'Am Ende der Komposition: "Neuffer."'
+402003771:
+- 'Am Ende der Komposition: "Nägeli."'
+402003772:
+- 'Am Ende der Komposition: "Rambach. / (Anthologie.)"'
+402003773:
+- 'Am Ende der Komposition: "Nägeli."'
+402003774:
+- 'Am Ende der Komposition: "Mann."'
+402003775:
+- 'Am Ende der Komposition: "Krummacher."'
+402003776:
+- 'Am Ende der Komposition: "Hiller."'
+402003777:
+- 'Am Ende der Komposition: "Neuhofer."'
+402003778:
+- 'Am Ende der Komposition: "Rambach. / (Anthologie.)"'
+402003779:
+- 'Am Ende der Komposition: "Neuhofer."'
+402003780:
+- 'Am Ende der Komposition: "Sturm."'
+402003782:
+- 'Am Ende der Komposition: "Voß."'
+402003783:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003784:
+- 'Am Ende der Komposition: "Haug."'
+402003785:
+- 'Am Ende der Komposition: "Hegner."'
+402003786:
+- 'Am Ende der Komposition: "A. Schreiber."'
+402003787:
+- 'Am Ende der Komposition: "Rambach. / Anthologie."'
+402003788:
+- 'Am Ende der Komposition: "Rambach. / Anthologie."'
+402003789:
+- 'Am Ende der Komposition: "Voß."'
+402003791:
+- 'Am Ende der Komposition: "Rambach. / Anthologie."'
+402003792:
+- 'Am Ende der Komposition: "Rambach. / Anthologie."'
+402003793:
+- 'Am Ende der Komposition: "Kramer."'
+402003795:
+- 'Am Ende der Komposition: "Ludwig Liber."'
+402003797:
+- 'Am Ende der Komposition: "Krummacher."'
+402003798:
+- 'Am Ende der Komposition: "Mann."'
+402003800:
+- 'Am Ende der Komposition: "Cramer."'
+402003801:
+- 'Am Ende der Komposition: "Rambach. / (Anthologie.)"'
+402003802:
+- 'Am Ende der Komposition: "Meyer."'
+402003803:
+- 'Am Ende der Komposition: "Spreng."'
+402003804:
+- 'Am Ende der Komposition: "Theophania."'
+402003805:
+- 'Am Ende der Komposition: "Tersteegen."'
+402003806:
+- 'Am Ende der Komposition: "Bär."'
+402003808:
+- 'Am Ende der Komposition: "Neuffer."'
+402003810:
+- 'Am Ende der Komposition: "Klopstock."'
+402003811:
+- 'Am Ende der Komposition: "Haug."'
+402003812:
+- 'Am Ende der Komposition: "Fink."'
+402003813:
+- 'Am Ende der Komposition: "Neuffer."'
+402003815:
+- 'Am Ende der Komposition: "Neuhofer."'
+402003816:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003817:
+- 'Am Ende der Komposition: "Nägeli."'
+402003819:
+- 'Am Ende der Komposition: "Eulbert von Chartres."'
+402003821:
+- 'Am Ende der Komposition: "Reithar."'
+402003822:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003823:
+- 'Am Ende der Komposition: "Maßmann."'
+402003824:
+- 'Am Ende der Komposition: "Ewald."'
+402003825:
+- 'Am Ende der Komposition: "Salis."'
+402003826:
+- 'Am Ende der Komposition: "Wiss d. jüng."'
+402003827:
+- 'Am Ende der Komposition: "Uz."'
+402003828:
+- 'Am Ende der Komposition: "Wessenberg."'
+402003829:
+- 'Am Ende der Komposition: "F. Schlegel."'
+402003830:
+- 'Am Ende der Komposition: "F. Schlegel."'
+402003831:
+- 'Am Ende der Komposition: "Lieberkühn."'
+402003832:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003833:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003834:
+- 'Am Ende der Komposition: "Körner."'
+402003835:
+- 'Am Ende der Komposition: "Göttling."'
+402003838:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003839:
+- 'Am Ende der Komposition: "Scherr. / Mitglied des Sängervereins / der Stadt Zürich."'
+402003840:
+- 'Am Ende der Komposition: "Pestaluz. / Mitglied des Sängervereins / der Stadt Zürich."'
+402003841:
+- 'Am Ende der Komposition: "Zehnder. / Mitglied des Sängervereins / der Stadt Zürich."'
+402003842:
+- 'Am Ende der Komposition: "Corrodi. / Mitglied des Sängervereins / der Stadt Zürich."'
+402003843:
+- 'Am Ende der Komposition: "Lips. / Mitglied des Sängervereins / der Stadt Zürich."'
+402003844:
+- 'Am Ende der Komposition: "Barbara Gutmann."'
+402003845:
+- 'Am Ende der Komposition: "Reuffer."'
+402003846:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003847:
+- 'Am Ende der Komposition: "Münch."'
+402003848:
+- 'Am Ende der Komposition: "Arndt."'
+402003849:
+- 'Am Ende der Komposition: "Pestaluz."'
+402003850:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003851:
+- 'Am Ende der Komposition: "Tiedge."'
+402003853:
+- 'Am Ende der Komposition: "Reithard."'
+402003854:
+- 'Am Ende der Komposition: "Lips."'
+402003855:
+- 'Am Ende der Komposition: "G. Geßner."'
+402003856:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003857:
+- 'Am Ende der Komposition: "Meyer."'
+402003858:
+- 'Am Ende der Komposition: "Baggesen."'
+402003859:
+- 'Am Ende der Komposition: "Fröhlich."'
+402003860:
+- 'Am Ende der Komposition: "Follen."'
+402003861:
+- 'Am Ende der Komposition: "Bornhauser."'
+402003862:
+- 'Am Ende der Komposition: "Corrodi."'
+402003863:
+- 'Am Ende der Komposition: "Nöldecke."'
+402003864:
+- 'Am Ende der Komposition: "Bär."'
+402003865:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003867:
+- 'Am Ende der Komposition: "Pfeiffer."'
+402003869:
+- 'Am Ende der Komposition: "Nägeli."'
+402003870:
+- 'Am Ende der Komposition: "Tanner."'
+402003871:
+- 'Am Ende der Komposition: "Meyer."'
+402003872:
+- 'Am Ende der Komposition: "Krüsi."'
+402003873:
+- 'Am Ende der Komposition: "Krüsi."'
+402003874:
+- 'Am Ende der Komposition: "Fröhlich."'
+402003876:
+- 'Am Ende der Komposition: "Gustav vom Berge."'
+402003877:
+- 'Am Ende der Komposition: "Meyer."'
+402003878:
+- 'Am Ende der Komposition: "Fröhlich."'
+402003879:
+- 'Am Ende der Komposition: "Lessing."'
+402003880:
+- 'Am Ende der Komposition: "Reithard."'
+402003881:
+- 'Am Ende der Komposition: "Meyer."'
+402003882:
+- 'Am Ende der Komposition: "Scherr."'
+402003883:
+- 'Am Ende der Komposition: "Usteri."'
+402003885:
+- 'Am Ende der Komposition: "A. Schreiber."'
+402003886:
+- 'Am Ende der Komposition: "Fröhlich."'
+402003887:
+- 'Am Ende der Komposition: "Tobler."'
+402003888:
+- 'Am Ende der Komposition: "v. Salis."'
+402003889:
+- 'Am Ende der Komposition: "Fröhlich."'
+402003891:
+- 'Am Ende der Komposition: "Graß."'
+402003892:
+- 'Am Ende der Komposition: "H. G. Nägeli."'
+402003894:
+- 'Am Ende der Komposition: "Lavater."'
+402003895:
+- 'Am Ende der Komposition: "Barb. Gutmann."'
+402003897:
+- 'Am Ende der Komposition: "Lips."'
+402003898:
+- 'Am Ende der Komposition: "v. Salis."'
+402003899:
+- 'Am Ende der Komposition: "Krüsi."'
+402003901:
+- 'Am Ende der Komposition: "Fröhlich."'
+402003902:
+- 'Am Ende der Komposition: "Fröhlich."'
+402003904:
+- 'Am Ende der Komposition: "Fröhlich."'
+402003905:
+- 'Am Ende der Komposition: "Bornhauser."'
+402003907:
+- 'Am Ende der Komposition: "Fröhlich."'
+402003909:
+- 'Am Ende der Komposition: "Bradili."'
+402003910:
+- 'Am Ende der Komposition: "Frey, / (Decan in Trogen.)"'
+402003912:
+- 'Am Ende der Komposition: "v. Salis."'
+402003913:
+- 'Am Ende der Komposition: "Bindemann."'
+402003915:
+- 'Am Ende der Komposition: "Graf von Löben."'
+402004056:
+- 'Couverture: dédicace manuscrite: "Hommage de l''Editeur / Ad. Henn / fils"'
+402004101:
+- 'Partition, page de titre: dédicace manuscrite: "Cette transcription [...] / et
+ cette partition est dédié / á la Société de chant du Conservatoire / de Genève,
+ pour être réunie á la / Bibli[o]thèque du Conservatoire / H. d. S."'
+- 'Partition, avant la musique: annotation manuscrite: "Transcription pour Choeur
+ et / grand orchestre, d''après le lied / pour piano - par Hugo d. Senger. / Genève
+ 4 décembre / 1870"'
+402004137:
+- 'Gedruckter Vermerk unten auf der ersten Seite: "*) Mit freundlicher Bewilligung
+ des Originalverlegers Herrn Julius Hainauer, Hofmusikalienhändler des Königs von
+ Preussen in Breslau. Entnommen den "Zwanzig / poetischen Stücken" für Violine und
+ Pianoforte (Album für die Jugend) von Hans Huber Op. 99."'
+402004308:
+- 'Gedruckter Vermerk auf Vorsatzblatt: "Entered according to Act of Congress, in
+ the year 1875, by ERWIN STEINBACK, / of the firm of Fr. Pustet, in the Office of
+ the Librarian of Congress at Washington, D. C."'
+- 'Etikett auf der Rückseite des Titelblattes mit handschriftlichem Verkmerk: "Seinem
+ hochverehrten Collegen, dem Hochw. Herrn P. Clemens Hegglin / Kapellmeister des
+ Stifts Einsiedeln in innigster Dankbarkeit / für unschätzbare Liebesdienste in Tagen
+ großer Bedrägniß / S. Gallen d: 9. Juni 1875. G. E. Stehle"'
+402005408:
+- 'p.32, á la fin de la musique: "Autographie de M|m|e Attenhofer, Lausanne."'
+402005793:
+- 'Annotation á la fin de la musique: "Mühl. / Rudolf Groelke / Musiker"'
+402005852:
+- 'Partie du violon, annotation á la fin de la musique: "R. Groelke"'
+402005858:
+- 'Parties séparées: initiales du copiste á la fin de chaque manuscrit'
+402005862:
+- 'Parties séparées: initiales du copiste á la fin de chaque manuscrit'
+402006023:
+- 'Deuxième partition, annotation en bas de la couverture: "Die des Notenschreibens
+ nicht sehr gewohnte Gehilfin / welcher der augenleidende Componist das Lied diktieren
+ / musste, bittet um freundliche Nachsicht."'
+402006148:
+- 'Schutzumschlag: Lithographie von G. Stempfle'
+402006295:
+- 'Name auf Seite 31 unten: "Tobner Alfred"'
+402006398:
+- 'Gedruckter Vermerk auf dem Vorsatzblatt: "Vormerkung. / Hier gebotene Messe ist
+ componirt über Motive der Pfingstsequenz Sancti Spiritus / adsit nobis gratia vom
+ hl. Notker, zubenannt der Stammler, Mönch von St. Gallen im IX Jahrhundert. / [...]
+ / Wyl, im Mai 1881. Der Autor."'
+402006409:
+- 'Schutzumschlag, Vermerk auf dem Vorsatzblatt: "Herrn JOSEF WENZIG / k. k. Schulrath
+ und Director der k. k. Ober- / realschule zu Prag, ord. Mitglied der k. / böhm.
+ Gesellschaft der Wissenschaften, des / Verwaltungsausschusses des Museum''s des
+ / König. Böhmen, correspond. Mitglied der / k. k. geologischen Reichsanstalt, und
+ meh- / rer gelehrten Vereine etc etc etc. / Achtungsvoll / gewidmet von / W. E.
+ Horàk."'
+402006451:
+- 'Gedruckter Vermerk auf der Rückseite des Umschlags: "Ein zweijähriger Aufenthalt
+ in Salzburg, und der Wunsch Mozarts dortige Vorläufer und ihre Tonwerke aufzufinden
+ und kennen / zu lernen, wozu die Güte Sr. Fürstbischöflichen Gnaden mich berechtigte,
+ das ist der entferntere Grund des Erscheinens dieser / zwei rein vokalen Kirchengesänge
+ aus der Mitte des XVII. Jahrhunderts, aus dem grössern Werke Quadragesimale. [...]
+ / M.-Einsiedeln an Maria.Lichtmess 1871. / Der Herausgeber. / [...]"'
+402006619:
+- 'Vermerk auf Seite 2: "Zur 5. Auflage. / In 14 Tagen erschienen vier Auflagen dieses
+ Chores. Möge die fünfte, in vorliegender Neubearbeitung dem / einfachen Klanggebilde
+ neue Freunde erwerben. / Weimar, im Nov. 1887. Der Componist. / NB. Ich ersuche
+ die verehrl. Vereinsleitungen das Stimmen- / material zu diesem Chor nur direkt
+ bei mir zu bestellen. / [...] / Weimar, im October 1887. K. Goepfart."'
+402006651:
+- 'Auf der Rückseite des Titelblattes: Vorwort von Georg Rauchenecker vom 21. Juli
+ 1883'
+402006743:
+- 'Vermerk auf Seite 1 unten: "Das Motiv wurde von J. D. der Frau Fürstin Chatarina
+ Hohenzollern von Jerusalem mitgebracht und durch Fürst Gustav Hohenlohe, Almosenir
+ S. Heilig- / keit, in Rom mitgetheilt."'
+402006768:
+- 'Vermerk am Ende der Komposition: "D|r L. Liebrecht. / 15.V.06."'
+402006769:
+- 'Vermerk am Ende der Komposition: "SC 23.IX.06"'
+402006770:
+- 'Vermerk am Ende der Komposition: "14.V.06. SC"'
+402006771:
+- 'Vermerk am Ende der Komposition: "Fr. Oser. / 15.V.06 SC."'
+402006772:
+- 'Vermerk am Ende der Komposition: "A. Schults. / 15.V.06 S. C."'
+402006774:
+- 'Vermerk am Ende der Komposition: "24.V.06 / SC"'
+402006777:
+- 'Vermerk am Ende der Komposition: "SC 1.II.04."'
+402006779:
+- 'Vermerk am Ende der Komposition: "SC. 22.II.03"'
+402006817:
+- 'Vermerk am Ende der Komposition: "A. Müller Wyl / 15. Febr. 1883."'
+402006818:
+- 'Vermerk am Ende der Partitur: "15.V.06 CS"'
+402006836:
+- 'Handschriftlicher Vermerk auf dem Umschlagtitel: "Herrn J. G. E. Stehle / Domchordirektor
+ / in St. Gallen in Hochachtung vom / Komp. / Bludenz / 17.11.91"'
+402006840:
+- 'Stempel auf dem Schutzumschlag: "GIUSEPPE BRIOSCHI / VIA ALLA CATEDRALE / 321 /
+ LUGANO"'
+402006846:
+- 'Handschriftlicher Vermerk auf dem Schutzumschlag: "Dem Herrn J. G. Eduard Stehle
+ / Domkapellmeister S|t Gallen / Der Verfasser"'
+402006849:
+- 'Handschriftlicher Vermerk auf der Titelseite: "Dem Hochwg. Herrn Director / J.
+ G. Eduard Stehle / G. Tebaldini"'
+402007007:
+- 'Partitur, Vermerk auf Seite 17 unten: "Melodie aus Op. 17. Zehn Lieder für eine
+ Singstimmen. Mit Genehmigung der Verlagshandlung / F. E. C. Leuckart in Leipzig."'
+402007013:
+- 'Vermerk am Ende der Komposition: "W: v: Goethe."'
+402007023:
+- 'Vermerk am Ende der Komposition: "W: Hauff."'
+402007029:
+- 'Vermerk am Ende der Komposition: "W: Müller."'
+402007033:
+- 'Vermerk am Ende der Komposition: "Alexander."'
+402007081:
+- 'Vermerk am Ende der Komposition: "Mit Bewilligung der Erben Gustav Arnolds für
+ das Knabenschiessen 1922 in Zürich gedruckt von / Hug & Co., Zürich."'
+402007185:
+- 'Erste Stimme, Vermerk auf Seite 7: "Lt. Joseph Slater USNR / Navy 963 / FPO NYC
+ NY"'
+402007722:
+- 'org, Widmung zu Beginn der Sammlung: "REVERENDISSIMO, / ET / CELSISSIMO / SACRI
+ ROMANI IMPERII / PRINCIPI / JOSEPHO / NICOLAO / EPISCOPO, / ET / COMITI LAUSANNENSI
+ /DOMINO DOMINO GRATIOSISSIMO."'
+402007980:
+- 'org, Widmung zu Beginn der Sammlung: "REVERENDISSIMO, / PERILLUSTRI AC AMPLISSIMO
+ DOMINO / DOMINO / UDALRICO, / Ordinis SS. P. Benedicti, / Celeberrimi, Antiquissimi,
+ & Exempti Monasterii / WESSOFONTANI, / ABBATI / vigilantissimo, / Domino Domino
+ /Moecenati Plurimum Gratioso, / observandissimo & c. & c."'
+402007996:
+- 'org, Widmung zu Beginn der Sammlung: "REVERENDISSIMO PERILLUSTRI / AC / AMPLISSIMO
+ DOMINO / DOMINO / BERTHOLDO II. / Celeberrimi, & antiquissimi Collegii ad B. V.
+ M. / in Diessen, Ord. Can. Reg. Aug. / PRAEPOSITO INFULATO / ET / ABBATI LATERANENSI
+ /Vigilantissimo, / NEC NON / Statuum Provincialium Superioris Bavariae / DEPUTATO
+ / Dignissimo & c. / Domino Domino ac Moecenati suo / Plurimum Gratioso Observandissimo
+ / Haec / de Festis Sanctorum Offertoria / submississimo Affectu offert / D. D. D./Author."'
+402008070:
+- 'org, Widmung zu Beginn der Sammlung: "REVERENDISSIMO, / PERILLUSTRI / AC / AMPLISSIMO
+ / S. R. I. PRAELATO, / DOMINO, DOMINO / EDMUNDO, / IMPERIALIS, EXEMPTAE, / AC CELEBERRIAME
+ SACRI / CANDIDI ORDINIS PRAEMONT- /STRATENSIS, / Canoniae Marchtallensis/ ABBATI
+ Vigilantissimo, / Domino in Uttenvveeiler, & Bremelau, &c. &c. / Patri, ac Mecaenati
+ suo plurimum / gratioso."'
+402008078:
+- 'org, Widmung zu Beginn der Sammlung: "BENEDICENTIUM DEUM / PRAECENTORI / Sanctissimo
+ / BENEDICTORUM A DEO / PRAECEPTORI / Sapientissimo / PSALTERII INSTAURATORI / &
+ / Monastici / CHORI REGENTI / Almo / P. BENEDICTO / CAELESTI CYTHARAEDO / UNI EX
+ SENIORIBUS CYTHARIZANTIBUS / Cytharis suis / CORAM AGNO / SUAVISSIMO PSALTI / DAVIDI
+ / Novi Testamenti / In Canticis & Cytharis / exultanti / HANC CYTHARAM DAVIDICAM
+ / DICAT / & / AD THOLUM GLORIAE / appendit / [...]"'
+402008118:
+- 'org, Widmung zu Beginn der Sammlung: "Dem hochwürdigen, Wohlgebohrnen / in Gott
+ geistlichen / Hernn Vater Magister / Felix Sutor, / der heiligen Schrift Doktor
+ / [...]"'
+402008126:
+- 'org, Widmung zu Beginn der Sammlung: "REVERENDISSIMO, / PERILLUSTRI AC AMPLISSIMO
+ DOMINO, / DOMINO /JOSEPHO I. / Celeberrimi & Exempti Monasterii / Andecensis / Ord.
+ S. P. Benedicti / ABBATI / vigilantissimo &c. &c. / Domino, Domino, / Patri ac Maecenati
+ suo / plurimum gratioso, observandissimo."'
+402008133:
+- 'org, Widmung zu Beginn der Sammlung: "Dem / hochwürdigsten / Bischofe / zu Pelle
+ u. u. / JOHANN NEPOMUK / AUGUST / Freyherrn von Ungelter."'
+402008141:
+- 'org, Widmung zu Beginn der Sammlung: "REVERENDISSIMO, / PERILLUSTRI, AC PERQUAM
+ / GRATIOSO DOMINO, / DOMINO / JOHANNI / BERNARDO / EPISCOPO CHRYSOPOLITANO, / REVERENDISSIMI
+ AC CELSISSIMI / PRINCIPIS EPISCOPI HERBIPOLENSIS / IN PONTIFICALIBUS / VICARIO GENERALI,
+ / CONSILIARIO INTIMO, / CANCELLARIAE ECCLESIASTICAE / PRAESIDI, / J. U. DOCTORI,
+ / INSIGNIS ECCLESIAE COLLEGIATAE AD UTRUM- / QUE SS. JOANNEM BAPTISTAM ET EVANGELISTAM
+ IN HAVGIS / CANONICO CAPITULARI / Domino Mecoenati suo perquam / gratioso / Cornu-Copiae
+ / Vesperarum diversarum / adgeniculans / humillimè offert, / seséque ex Integro
+ Devotissimè Consecrat / AUCTOR / [...]"'
+402008177:
+- 'org, Widmung zu Beginn der Sammlung: "REVERENDISSIMI PERILLUSTRIS / AC / AMPLISSIMI
+ DOMINI / DOMINI / FRANCISCI / Celeberrimae, Antiquissiame ac Lateranensis / Canoniae
+ ad Sanctam Crucem Pollingae / PRAEPOSITI / AC / ABBATIS INFULATI / vigilantissimi,
+ / Statuum Prouincialium Suprioris Bavariae / DEPUTATI / dignissimi, / Domini, ac
+ Patroni sui plurimum Gratiosi, / observandissimi, / SUMMIS HONORIBUS / Hanc tenuem
+ opellam / Devinctissimi Obsequii ergo / Humillime / D. D. D. / Author."'
+402008190:
+- 'org, Widmung zu Beginn der Sammlung: "CELSISSIMO / AC / REVERENDISSIMO / S. R.
+ I. PRINCIPI / AC / DOMINO DOMINO / ANTONIO / EX S. R. I. / COMTIBUS DE FUGGER /
+ A / KIRCHBERG / ET / WEISSENHORN, &c. &c. / ECCLESIAE PRINCIPALIS ELVACENSIS / PRAEPOSITO/DIGNISSIMO,
+ / DOMINO DOMINO SUO CLEMENTISSIMO."'
+402008210:
+- 'org, Widmung zu Beginn der Sammlung: "REVERENDISSIMO, AC CELSISSIMO / S. R. I.
+ / PRINCIPI / DOMINO, DOMINO / NICOLAO / DE RUPE / IMMEDIATI MONASTERIJ B. V. M.
+ / EINSIDLENSIS PRAESULI, FAHRAE, FRISAE, & / BELLINZONAE AD RESIDENTIAM P. P. BENEDICTINORUM
+ / ABBATI, / DOMINO IN PFEFFICON, FREUDENFELS, SONNENBERG, / GACHNANG, & RICHENBURG,
+ S. CONGREG. HELVETO- / BENEDICTINAE VISITATORI, &c. &c. / DOMINO DOMINO / GRATIOSISSIMO.
+ &c. &c." und "REVERENDISSIMO ac ILLUSTRISSIMO / S. R. I. / PRINCIPI / FRIDOLINO
+ II. / EXEMPTI MONASTERII S. MARTINI / Ad Muros / ABBATI, / Domino in Clingenberg,
+ Sandegg, Eppishau- /sen, Glatt, Diessen, Dettensee, Dettin- / gen , Neckerhausen,
+ &c. &c. / DOMINO DOMINO / GRATIOSISSIMO, &c. &c."'
+402008230:
+- 'org, Widmung zu Beginn der Sammlung: "EXCELLENTISSIMO / AC / REVERENDISSIMO / S.R.
+ I. PRAELATO, / DOMINO DOMINO / ANSELMO II. / REGII, IMPERIALIS, EXEMPTI, / AC CONSISTORIALIS
+ / MONASTERII SALEMITANI / ABBATI, / UTRIUSQUE / SACRAE CAESAREO-REGIAE MAJESTATIS
+ / ACTUALI INTIMO CONISLIARIO, / NEC NON / REVERNDISSIMI COLLEGII ABBATIALIS / PER
+ CIRCULUM SUEVICUM / CONDIRECTORI. / Domino Domino Suo, / ac Patrono Gratiosissimo."'
+402008371:
+- 'Widmung im Druck (erstes und zweites Vorsatzblatt): "REVERENDISSIMO, / PERILLUSTRI,
+ / AC / AMPLISSIMO DOMINO, S. R. I. PRÆLATO, / DOMINO / EDMUNDO II, / IMPERIALIS,
+ EXEMPTÆ, / AC CELEBERRIMÆ, SACRI / ORDINIS PRÆMONSTRATENSIS, / Canoniæ Marchtallensis
+ / ABBATI Vigilantissimo, / Domino in Uttenweiler, & Bremelau &c. &c. / Patri, ac
+ Mæcenati suo perquam / gratioso. [...]"'
+- 'Auf dem zweiten Vorsatzblatt folgt ein handschriftliches Anagramm auf Joseph Leodegar
+ Balthasar mit der Datierung: "Die 19. Martÿ / anni 1748"; dieser Konvolut wurde
+ dem Chorherrn Joseph Leodegar Balthasar zum Namenstag geschenkt'
+402008451:
+- 'Widmung auf dem 1.-4. Vorsatzblatt der Orgelstimme: "REVERENDISSIMO, / PERILLUSTRI
+ AC AMPLISSIMO DOMINO / DOMINO / MEINRADO, / Ordinis SS. P. Benedicti, / Exempti
+ Monasterii Montis S. Andechs / ABBATI / vigilantissimo, / nec non / Exemptæ Congregationis
+ Benedictino-Bavaricæ / VISITATORI / extraordinario, / Domino, Domino / ac Patri
+ Plurimum Gratioso, / Obserbandissimo &c. &c. [...]"'
+402008458:
+- 'Widmung und Bibeltexte auf dem 1.-2. Vorsatzblatt der Orgelstimme: "DEDICATIO /
+ VI. MISSARUM / AD / SANCTISSIMUM / SACRAMENTUM / IN / TEMPLO S. CRUCIS / AUGUSTÆ
+ / [...]"'
+402008488:
+- '1. Vorsatzblatt in der Orgelstimme, Widmung: "Dem / hochwuerdigen, wohlgebornen
+ / Herrn / Philipp Joseph Martin, / beyder Rechte Doktor, / des vortrefflichen Kollegiatstifts
+ in Haug Dekan, / Seiner hochfuerstlichen Gnaden zu Wuerzburg / geheimen Rathe /
+ und / Conservator der Julius Universitaet / gewidmet / von dem / Tonsetzer."'
+402008496:
+- '1. Vorsatzblatt: Doppelseitiger Vorbericht des Verlegers mit einem kurzen Lebenslauf
+ des Komponisten; Der Druck ist lediglich in diesem Vorbericht datiert'
+402008523:
+- '1. Vorsatzblatt, Widmung: "REVERENDISSIMO, PERILLUSTRI, AC AMPLIS- / SIMO DOMINO,
+ DOMINO / NICOLAO / LUDOVICO PEYER / Im Hoff / PROTHONOTARIO APOSTOLICO, / EQUITI
+ &C. AC INSIGNIS, ET COLLE- / giatæ Ecclesiæ Lucernensis ad S. Leodegarium / PRÆPOSITO
+ DIGNISSIMO, / Domino, ac Patrono suo Gratioso &c. / [...]"'
+402008789:
+- 'Anmerkung am Schluss des Stücks: "1. und 2. Strophe von Friedolin Hofer, 3. Strophe
+ von Ig. Kronenberg."'
+402008813:
+- 'S, Anmerkung am Schluss der Stimme: "arrangé p. Dom. Herzog / Chorreg. - 1835 -
+ 16 Januari"'
+402008840:
+- '2. Materialschicht: Von Dominik Herzog hinzukomponierte Tenorstimme'
+402009108:
+- 'Directorium 1. Auflage [1892], 1. Vorsatzblatt: "Sr. Bischöflichen Gnaden / dem
+ hochwürdigsten, hochwohlgeborenen Herrn Herrn / Pancratius von Dinkel, / Bischof
+ von Augsburg, / Reichsrath, Comthur des k. Verdienst-Ordens der bayerischen Krone
+ / u. Commandeur des sizilianischen Ordens Franz I. mit Stern / ehrfurchtsvollst
+ gewidmet."'
+402009126:
+- '2. Materialschicht: Datierung am Schluss der Abschrift: "Scripsit N. Estermann,
+ Chorregent. / 11/III 94."'
+402009133:
+- 'Handschrift, Datierung am Schluss der Stimme: "Scripsit Dom. Herzog / Chorreg.
+ Beronae anno 1854"'
+402009611:
+- '2. Materialschicht, handschriftliche Widmung des Komponisten auf dem Titelblatt
+ der Abschrift: "Frau E. Heim + ihrem ausgezeichneten Chor / in dankbarer Verehrung
+ / gewidmet / Fred Hay / Genf. Juni 1928"'
+- '4. Materialschicht: Am Schluss der Stimme: "Paul Böhninger. / Bern, den 11. Mai
+ 1929"'
+402010164:
+- 'Incip. 1.4.1, Anmerkung: "Ernst v. Büren dedicirt."'
+- 'Incip. 1.16.1, Anmerkung: "Herrn Lütschg."'
+402010248:
+- 'Materialschicht 2, Datierung am Schluss der Stimme: "Ende. / Abgeschr. am 11. August
+ 1910."'
+- '1.3.1: Vermerk in der Partitur (Materialschicht 1): "Schlusschor v. E. Rohde /
+ instr. v. G. von Fellenberg."'
+402010934:
+- 'Auf p.3 rechts oben: "Louis R. E. Kelterborn"'
+- 'Auf p.4: "[Verlagszeichen] / PAUL ATTINGER S. A. / Neuchatel"'
+402013218:
+- 'Anmerkung des Herausgebers am Schluss des Stückes: "In dieser Fassung Eigentum
+ der Verlagshandlung."'
+402013219:
+- 'Anmerkung des Herausgebers am Schluss des Stückes: "In dieser Fassung Eigentum
+ der Verlagshandlung."'
+402013220:
+- 'Anmerkung des Herausgebers am Schluss des Stückes: "In dieser Fassung Eigentum
+ der Verlagshandlung."'
+402013221:
+- 'Anmerkung des Herausgebers am Schluss des Stückes: "In dieser Fassung Eigentum
+ der Verlagshandlung."'
+402013222:
+- 'Anmerkung des Herausgebers am Schluss des Stückes: "In dieser Fassung Eigentum
+ der Verlagshandlung."'
+402013490:
+- 'org, Widmung zu Beginn der Sammlung: "REVERENDISSIMO, / PERILLUSTRI / AC / AMPLISSIMO
+ / S. R. I. PRAELATO, / DOMINO, DOMINO / EDMUNDO, / IMPERIALIS, EXEMPTAE, / AC CELEBERRIAME
+ SACRI / CANDIDI ORDINIS PRAEMONT- /STRATENSIS, / Canoniae Marchtallensis/ ABBATI
+ Vigilantissimo, / Domino in Uttenvveeiler, & Bremelau, &c. &c. / Patri, ac Mecaenati
+ suo plurimum / gratioso."'
+402013724:
+- '1. Vorsatzblatt, Widmung: "Reverendissimo, / Perillustri, ac Amplissimo Domino,
+ / Domino / MARIANO, / Insignis Ecclesiæ Steingadianæ, Sac. / Cand. & exempti Ord.
+ Canonico- / rum Præmonstrat. / Abbati vigilantissimo, / nec non / Celeberrimæ Canoniæ
+ Speinshartensis / Patri Domus hæreditario &c. / Domino suo perquam gratioso."'
+402013813:
+- 'Auf dem Vorsatzblatt, f.[2r]: "REVERENDISSIMO / PERILLUSTRI AC AMPLISSIMO / DOMINO
+ DOMINO / PETRO / ORD. S. P. BEN. / CELEBERRIMI ET EXEMPTI MONASTERII / PRIFLINGENSIS
+ / ABBATI VIGILANTISSIMO / PATRI AC DOMINO SUO / PLURIMUM GRATIOSO / OBSERVANDISSIMO.",
+ auf f.[2v-3r] der Widmungstext, signiert: "F.Marianus"'
+402013825:
+- 'In der A-Stimme auf f.1r unten: "P. U. Kornmüller. O. S. B. XV Offertorien. (Verlag
+ von Fr. Pustet in Regensburg.)"'
+- 'In der Partitur auf f.1r Inhaltsverzeichnis. Unten: "Stich u. Druck v.F.W.Garbrecht''s
+ Nachf., Oscar Brandstetter, Leipzig."'
+402013841:
+- 'Auf dem Vorsatzblatt, f.[2r]: "REVERENDISSIMO / PERILLUSTRI, AC AMPLISSIMO / DOMINO
+ DOMINO / ADALBERTO, / [Wappen] / ANTIQUISSIMI MONASTERII AD S. MI- / CHAELEM ARCHANGELUM
+ IN METTEN / INFERIORIS BAVARIAE / ABBATI VIGILANTISSIMO, / S. CONGREGATIONIS CASSINENSIS
+ / ABBATI DIOGNISSIMO, / DOMINO DOMINO / PATRI, AC MAECENATI SUO / Perquam Gratioso,
+ Observandissimo, &c. &c.", auf f.[2v-3r] der Widmungstext'
+402013903:
+- 'In der org-Stimme auf dem Vorsatzblatt [f.1r]: "EMINENTISSIMO / ET / REVERENDISSIMO
+ / S. R. E. / CARDINALI PREBYTERO / FRANCISCO CONRADO / DE RODT, / EPISCOPO - CONSTANTIENSI,
+ / S. R: J. PRINCIPI, / DOMINO AUGIAE MAJORIS, ET OENINGAE, / NEC NON / PRAEPOSITO
+ MITRATO EISGARNENSI / IN AUSTRIA. / DOMINO DOMINO / CLEMENTISSIMO", auf f.[3r-3v]
+ der Widmungstext'
+402013928:
+- 'In der org-Stimme auf f.[2r]: "REVERENDISSIMO, / ET / CELSISSIMO / SACRI ROMANI
+ IMPERII / PRINCIPI / JOSEPHO / NICOLAO / EPISCOPO, / ET / COMITI LAUSANNENSI / DOMINO
+ DOMINO GRATIOSISSIMO.", auf f.[2v-3r] der Widmungstext'
+402013932:
+- 'In der org-Stimme auf f.[2r]: "CELSISSIMO / AC / REVERENDISSIMO / S. R. I. PRINCIPI
+ / AC / DOMINO DOMINO / ANTONIO / EX S. R. I. / COMTIBUS DE FUGGER / A / KIRCHBERG
+ / ET / WEISSENHORN, &c. &c. / ECCLESIAE PRINCIPALIS ELVACENSIS / PRAEPOSITO / DIGNISSIMO,
+ / DOMINO DOMINO SUO CLEMENTISSIMO.", auf f.[2v-3r] Widmungstext'
+402013935:
+- 'Auf f.1r der Partitur: "Verlag von H. Pawelek in Regensburg / H.P.1078 / Stich
+ u. Druck b. Oscar Brandstetter. Leipzig."'
+402013957:
+- 'Auf f.1r der Partitur und der Stimmen: "Katholische Kirchengesänge. Heft VI. /
+ Verlag von H. Pawelek in Regensburg. / H.P.684 / Stich u. Druck v. Oscar Brandstetter,
+ vorm. F.W.Garbrecht, Leipzig."'
+402014018:
+- 'In jeder Stimme auf f.1r links oben: "D. Müller. Op. 98."'
+402014036:
+- 'Am Schluss: "Moritz Ulrizi."'
+402014039:
+- 'Am Schluss: "L. Möller."'
+402014040:
+- 'Am Schluss: "Tsidorus."'
+402014041:
+- 'Am Schluss: "Fouqué."'
+402014042:
+- 'Am Schluss: "Fouqué."'
+402014043:
+- 'Am Schluss: "Müchler"'
+402014045:
+- 'Am Schluss: "Tsidorus."'
+402014046:
+- 'Am Schluss: "Gottwalt."'
+402014047:
+- 'Am Schluss: "Gottwalt."'
+402014048:
+- 'Am Schluss: "Gottwalt."'
+402014049:
+- 'Am Schluss: "Heydenreich."'
+402014050:
+- 'Am Schluss: "Max von Schenkendorf."'
+402014052:
+- 'Am Schluss: "Overbeck."'
+402014053:
+- 'Am Schluss: "Jacobi."'
+402014054:
+- 'Am Schluss: "Fouqué."'
+402014055:
+- 'Am Schluss: "Rochlitz."'
+402014056:
+- 'Am Schluss: "Fouqué."'
+402014057:
+- 'Am Schluss: "Fouqué."'
+402014058:
+- 'Am Schluss: "Fouqué."'
+402014059:
+- 'Am Schluss: "Herder."'
+402014222:
+- 'In der org-Stimme auf f.[2r]: "REVERENDISSIMO / AC / CELSISSIMO DOMINO, / DOMINO
+ / ANSELMO, / S.R.I.PRINCIPI, / IMPERIALIS MONASTERII / ORIDINIS S.BENEDICTI, / ET
+ / IMMEDIATAE ECCLESIAE / AD / S.EMERAMUM RATISBONAE / ABBATI / VIGILANTISSIMO &
+ c. / Principi, ac Domino, / Domino Clementissimo &c.", auf f.[2v-3v] der Widmungstext'
+402014249:
+- 'In der org-Stimme auf f.[2r]: "REVERENDISSIMO, PERILLUSTRI, / AC / AMPLISSIMO DOMINO,
+ / DOMINO / JOSCIONI, / ANTIQUISSIMI, ac CELEBERRIMI / MONASTERII ALTAHAE INFERIORIS
+ / ORD. S.BENEDICTI / PRAESULI / VIGILANTISSIMO, / CATHEDRALIS ECCLESIAE BAMBERGENSIS
+ / CANONICO, / ET CELSISSIMI S.R.I.PRINCIPIS ET EPI- / SCOPI IBIDEM COLLATERALI NATO,
+ / PRAEPOSITO / IN RINCHNA, AD S.OSWALDUM, ET IN SPIZ / AUSTRIAE INFERIORIS, / DOMINO
+ IN HENGERSPERG, ARNBRUCK &c. / S.CONGREGATIONIS CASSINENSIS / PRAELATO, / PRIMO
+ PATRIAE ABBATI, / ET STATUUM PROVINCIALIUM / CON-DEPUTATO / Domino, Domino, perquam
+ Gratioso.", auf f.[2v] der Widmungstext'
+402014306:
+- 'Auf f.[3r]: "ILLUSTRISSIMO / AC / EXCELLENTISSIMO / DOMINO, DOMINO / ERNESTO, /
+ S.R.I. / COMITIáMONTFORT, / DOMINO, BRIGANTIAE, TET- / NANGAE, ET ARGAE, / S.C.M.
+ / CAMERARIO ACTUALI, / NEC NON / CONSILIARIO AULICO / IMPERIALI &c.&c. / Domino
+ perquam Gratioso &c.", auf f.[3v-4v] der Widmungstext'
+402014318:
+- 'Auf f.1r unten: "Kirchenmusikverlag Meinrad Ochsner, Einsiedeln M.O.289"'
+402014339:
+- 'Auf f.[2r]: "Seiner Durchlaucht / DEM SOUVERAINEN / HERZOGE WILHELM / VON NASSAU
+ / etc. etc. etc. / in tiefster Ehrfucht und Unterthänigkeit gewidmet / vom Verfasser."'
+402014352:
+- 'Auf dem Umschlag ein weisses Etikett, darauf gedruckt: "ABONNEMENT / DE MUSIQUE
+ / d''Ernest Knop á Bâle. / [handschriftlich mit Tinte: 20 Orgelstücke / von / Ch.
+ H. Rink / 33 Werk / 8|e Sammlung der Orgelstücke] / fl [handschriftlich mit Tinte:
+ 1],, [handschriftlich mit Tinte: 48] kr. / me SUPPLÉMENT N|o. / ANMERKUNG. / [...]"'
+402014373:
+- 'Auf dem Umschlag ein rosa Etikett, darauf: "[handschriflitch:] Praktische Orgelschule
+ / von / Rinck. / [gedruckt:] Musikhandlung / von Gebrüder Hug, in Zürich, / [weitere
+ handschriftliche Anmerkungen unleserlich]"'
+402014395:
+- 'Auf dem vorderen Umschlag innen: "Infolge Wunsches und Beschlusses der Generalversammlung
+ des Cäcilien-Vereins für alle Länder / deutscher Zunge in Biberach, habe ich mit
+ Einwilligung des hochwürdigen Herrn Generalpraeses Dr. Fr. Witt / einen / "Verein
+ zur Verbreitung in den Vereins-Katalog aufgenommener Werke / um ermässigten Preis
+ für die Vereinsmitglieder" / gegründet. [...] / Regensburg, Glockenstrasse 39 /
+ Jos. Seiling, / Kirchenmusikalien-Verlag, General-Depôt. / Handlung u. Leihanstalt
+ für alle im Cäcilien-Vereins- / Katalog aufgenommenen Musikalien."'
+- 'Auf dem hinteren Umschlag: "Im Verlage von Jos. Seiling in Regensburg sind ferner
+ erschienen: / [...]"'
+403000257:
+- 'Am Schluss der Komposition Vermerk: " 11. September 1961 / P. Daniel Meier"'
+403000272:
+- 'Am Schluss der Komposition Vermerk: "D.G. / 26.4.58 / D.M."'
+403000273:
+- 'Am Schluss des ersten Satzes Vermerk: "1.II.1959 D.M. / D.G."'
+- 'Am Schluss des zweiten Satzes Vermerk: "4.2.59"'
+403000274:
+- 'Am Schluss der Komposition Vermerk: "28.XI.95 / D.G."'
+403000277:
+- 'Am Schluss der Komposition Vermerk: "Meinrad Lienert / 8.V.82"'
+403000322:
+- 'Am Schluss der Komposition Vermerk: "25.4.67 / D.M."'
+403001479:
+- 'Vermerk zu Beginn der Komposition: "Fräulein Mathilde Krieger / freundlichst zugeeignet."'
+403001818:
+- 'Widmung zu Beginn der Komposition: "A mon ami Monsieur Walther Schulz."'
+403001845:
+- 'Vermerk zu Beginn der Komposition: "Frau Josefine Teutsch geb. von Sternheim hochachtungsvoll
+ gewidmet."'
+403001880:
+- 'Widmung zu Beginn der Komposition: "Dem Schwarz''schen Männergesangverein in Magdeburg
+ / zu seinem 50jährigen Jubiläum gewidmet von seinem Ehrenmitgliede"'
+403002172:
+- 'Vermerk zu Beginn der Komposition (score): "Herrn Dr. Karl Munzinger zugeeignet."'
+403002178:
+- 'Vermerk zu Beginn der Komposition: "Meinem Freunde Ludwig Hess."'
+403002492:
+- 'Vermerk zu Beginn der Komposition: "Casimir v. Blumenthal / Wien 21. 4. 1808"'
+403002513:
+- 'Vermerk zu Beginn der Komposition: "Herrn J. B. Pischeck K. W. Hofsänger freundlichst
+ zugeeignet"'
+403002514:
+- 'Vermerk zu Beginn der Komposition: "Herrn Minetti, Hofsänger in Wiesbaden."'
+403003599:
+- 'Score 1: Autographe Widmung zu Beginn der Komposition: "Hommage, á mon cher ancien
+ Maître, / le Rév. P. Basile Breitenbach. O. S. B."'
+403003674:
+- 'Autographer Vermerk auf der Titelseite: "Herrn Pater Francesco de Sales Truniger
+ / in grosser Verehrung / Hermann Hans Wetzler / Weihnachten 1941"'
+403003675:
+- 'Autographer Vermerk auf der Titelseite: "Herrn Pater Aloysius O. S. B. / mit herzlichen
+ Weihnachtsgrüssen / Hermann Hans Wetzler"'
+403003905:
+- 'Score 1: Autographe Widmung zu Beginn: "A notre toujours si cher ancien maître
+ / le Père Joseph Staub. O. S. B. / les auteurs reconnaissants / Joseph Bovet, chanoine
+ / Bondallaz."'
+- 'Score 2: Autographe Widmung zu Beginn: "A mon toujours bien cher Dom Sigismond
+ de Courten, / celui qui ne l''oublie jamais, / en toute cordialité / Joseph Bovet,
+ chan. h."'
+403004018:
+- 'Widmung in der 5. Ausgabe: "Dédié á M. A. Castella, Directeur."'
+403004022:
+- 'Widmung in der 5. Ausgabe: "A mon ami Paul Morard, conseiller national."'
+403004695:
+- 'Widmung nach dem Titelblatt: "Seiner Excellenz / dem Hochwürdisten Herrn / Raymund
+ / Erzbischof von Bukarest / in Ehrfurcht und Liebe gewidmet / vom Herausgeber."'
+403004866:
+- '"Carl Breitenbach": Taufname von Basil Breitenbach'
+403004873:
+- '"Johann Brugger": Taufname von Kolumban Brugger'
+403004890:
+- 'Vermerk am Schluss der Komposition: " P. Basil / 22.IX.15"'
+403004905:
+- 'Vermerk am Schluss der Komposition: "P. Basil Br. / 20.IX.13."'
+403004977:
+- 'Vermerk am Schluss der Partitur: "Scripsi die XXVI Aprilis 1882 / P. Basilius."'
+403004981:
+- 'Partitur: Widmung vor der Titelseite: " Seiner bischöflichen Gnaden / dem hochwürdigsten
+ Herrn / Leonhard Haas / Bischof von Basel und Lugano / ehrerbietigst / gewidmet
+ / vom / Autor."'
+403013186:
+- 'Widmung auf der Titelseite der gedruckten Partitur: "H. P. Philipp Gut und seinem
+ Chor"'
+403013707:
+- 'Laurentius von Schnüffis: Pseudonym Johannes Martin'
+403013751:
+- 'Angelus Silesius: Pseudonym Johannes Scheffler'
+403013752:
+- 'Angelus Silesius: Pseudonym Johannes Scheffler'
+403013832:
+- 'Angelus Silesius: Pseudonym Johannes Scheffler'
+403013898:
+- 'Autographe Widmung auf einem der beiden Exemplare: "Dem feinsinnigen Zeichenkünstler
+ / Hochw. Herrn P. Bernard Flüeler / der Komponist."'
diff --git a/housekeeping/upgrade_3.5/852d.yml b/housekeeping/upgrade_3.5/852d.yml
new file mode 100644
index 000000000..ce06662b3
--- /dev/null
+++ b/housekeeping/upgrade_3.5/852d.yml
@@ -0,0 +1,37133 @@
+---
+'400100230':
+ :text: '1'
+ :tag: 852$d
+ :transform:
+'400102175':
+ :text: '2'
+ :tag: 852$d
+ :transform:
+'400102490':
+ :text: '4'
+ :tag: 852$d
+ :transform:
+'402005427':
+ :text: '4'
+ :tag: 852$d
+ :transform:
+'410002899':
+ :text: '4'
+ :tag: 852$d
+ :transform:
+'400102445':
+ :text: '5'
+ :tag: 852$d
+ :transform:
+'400102524':
+ :text: '5'
+ :tag: 852$d
+ :transform:
+'400102459':
+ :text: '6'
+ :tag: 852$d
+ :transform:
+'400056006':
+ :text: '7'
+ :tag: 852$d
+ :transform:
+'400100232':
+ :text: '7'
+ :tag: 852$d
+ :transform:
+'400102455':
+ :text: '7'
+ :tag: 852$d
+ :transform:
+'400102174':
+ :text: '8'
+ :tag: 852$d
+ :transform:
+'400102143':
+ :text: '9'
+ :tag: 852$d
+ :transform:
+'400102525':
+ :text: '9'
+ :tag: 852$d
+ :transform:
+'400102526':
+ :text: '9'
+ :tag: 852$d
+ :transform:
+'400102527':
+ :text: '9'
+ :tag: 852$d
+ :transform:
+'400014674':
+ :text: LB 351333
+ :tag: 852$d
+ :transform:
+'400102153':
+ :text: '11'
+ :tag: 852$d
+ :transform:
+'400102149':
+ :text: '12'
+ :tag: 852$d
+ :transform:
+'400102150':
+ :text: '13'
+ :tag: 852$d
+ :transform:
+'400102491':
+ :text: '14'
+ :tag: 852$d
+ :transform:
+'404000181':
+ :text: '14.'
+ :tag: 852$d
+ :transform:
+'400102144':
+ :text: '15'
+ :tag: 852$d
+ :transform:
+'400102449':
+ :text: '15'
+ :tag: 852$d
+ :transform:
+'400102446':
+ :text: '16'
+ :tag: 852$d
+ :transform:
+'402003690':
+ :text: u 5
+ :tag: 852$d
+ :transform:
+'400102450':
+ :text: '17'
+ :tag: 852$d
+ :transform:
+'400102456':
+ :text: '18'
+ :tag: 852$d
+ :transform:
+'404000182':
+ :text: '18.'
+ :tag: 852$d
+ :transform:
+'404000412':
+ :text: '146'
+ :tag: 852$d
+ :transform:
+'400102536':
+ :text: '21'
+ :tag: 852$d
+ :transform:
+'400102155':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102156':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102157':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102158':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102159':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102160':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102161':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102162':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102163':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102164':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102165':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102166':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102167':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102168':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102169':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102170':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'400102171':
+ :text: '22'
+ :tag: 852$d
+ :transform:
+'402003194':
+ :text: '23'
+ :tag: 852$d
+ :transform:
+'402003203':
+ :text: '23'
+ :tag: 852$d
+ :transform:
+'400102444':
+ :text: '24'
+ :tag: 852$d
+ :transform:
+'400102182':
+ :text: '25'
+ :tag: 852$d
+ :transform:
+'400102177':
+ :text: II d. 29
+ :tag: 852$d
+ :transform:
+'400102178':
+ :text: II d 29
+ :tag: 852$d
+ :transform:
+'400102179':
+ :text: II d 29
+ :tag: 852$d
+ :transform:
+'400102188':
+ :text: '27'
+ :tag: 852$d
+ :transform:
+'400102441':
+ :text: '28'
+ :tag: 852$d
+ :transform:
+'400055976':
+ :text: N|o 30a
+ :tag: 852$d
+ :transform:
+'400102442':
+ :text: '29'
+ :tag: 852$d
+ :transform:
+'400102183':
+ :text: II. A.l. 67
+ :tag: 852$d
+ :transform:
+'400102486':
+ :text: '31'
+ :tag: 852$d
+ :transform:
+'400102509':
+ :text: '32'
+ :tag: 852$d
+ :transform:
+'400102173':
+ :text: II A.b. 15
+ :tag: 852$d
+ :transform:
+'400102185':
+ :text: '35'
+ :tag: 852$d
+ :transform:
+'402003253':
+ :text: '36.'
+ :tag: 852$d
+ :transform:
+'400102542':
+ :text: '38'
+ :tag: 852$d
+ :transform:
+'400102538':
+ :text: '40'
+ :tag: 852$d
+ :transform:
+'400102546':
+ :text: '42'
+ :tag: 852$d
+ :transform:
+'400102547':
+ :text: '42'
+ :tag: 852$d
+ :transform:
+'400102518':
+ :text: '45'
+ :tag: 852$d
+ :transform:
+'400102523':
+ :text: '46'
+ :tag: 852$d
+ :transform:
+'400102512':
+ :text: '48'
+ :tag: 852$d
+ :transform:
+'402006069':
+ :text: '48'
+ :tag: 852$d
+ :transform:
+'402006650':
+ :text: '48'
+ :tag: 852$d
+ :transform:
+'402003271':
+ :text: '49'
+ :tag: 852$d
+ :transform:
+'400102123':
+ :text: '53'
+ :tag: 852$d
+ :transform:
+'400102124':
+ :text: '54'
+ :tag: 852$d
+ :transform:
+'400102511':
+ :text: '57'
+ :tag: 852$d
+ :transform:
+'400102548':
+ :text: '62'
+ :tag: 852$d
+ :transform:
+'402003662':
+ :text: t 42
+ :tag: 852$d
+ :transform:
+'400014681':
+ :text: '65.'
+ :tag: 852$d
+ :transform:
+'400102146':
+ :text: '65'
+ :tag: 852$d
+ :transform:
+'402003686':
+ :text: t 43
+ :tag: 852$d
+ :transform:
+'400102494':
+ :text: '66'
+ :tag: 852$d
+ :transform:
+'402003685':
+ :text: t 44
+ :tag: 852$d
+ :transform:
+'400102176':
+ :text: '67'
+ :tag: 852$d
+ :transform:
+'400102125':
+ :text: '68'
+ :tag: 852$d
+ :transform:
+'400102187':
+ :text: '69'
+ :tag: 852$d
+ :transform:
+'404000354':
+ :text: '70'
+ :tag: 852$d
+ :transform:
+'400102489':
+ :text: '71'
+ :tag: 852$d
+ :transform:
+'400102493':
+ :text: '72'
+ :tag: 852$d
+ :transform:
+'400102130':
+ :text: '73'
+ :tag: 852$d
+ :transform:
+'400102131':
+ :text: '73'
+ :tag: 852$d
+ :transform:
+'400102132':
+ :text: '73'
+ :tag: 852$d
+ :transform:
+'400102133':
+ :text: '73'
+ :tag: 852$d
+ :transform:
+'400102443':
+ :text: '75'
+ :tag: 852$d
+ :transform:
+'400102540':
+ :text: '76'
+ :tag: 852$d
+ :transform:
+'400102320':
+ :text: II.A.b.46
+ :tag: 852$d
+ :transform:
+'400102321':
+ :text: II.A.b.46
+ :tag: 852$d
+ :transform:
+'400102322':
+ :text: II.A.b.46
+ :tag: 852$d
+ :transform:
+'400102323':
+ :text: II.A.b.46
+ :tag: 852$d
+ :transform:
+'400102324':
+ :text: II.A.b.46
+ :tag: 852$d
+ :transform:
+'400102325':
+ :text: II.A.b.46
+ :tag: 852$d
+ :transform:
+'400102326':
+ :text: II.A.b.46
+ :tag: 852$d
+ :transform:
+'400102327':
+ :text: II.A.b.46
+ :tag: 852$d
+ :transform:
+'400014678':
+ :text: '90'
+ :tag: 852$d
+ :transform:
+'400014682':
+ :text: '91'
+ :tag: 852$d
+ :transform:
+'400014677':
+ :text: '92.'
+ :tag: 852$d
+ :transform:
+'400014679':
+ :text: '93'
+ :tag: 852$d
+ :transform:
+'400014683':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400100269':
+ :text: '109'
+ :tag: 852$d
+ :transform:
+'400167151':
+ :text: No. 39
+ :tag: 852$d
+ :transform:
+'400100286':
+ :text: '130'
+ :tag: 852$d
+ :transform:
+'400100262':
+ :text: '140'
+ :tag: 852$d
+ :transform:
+'400100252':
+ :text: 142a
+ :tag: 852$d
+ :transform:
+'400100254':
+ :text: 142a
+ :tag: 852$d
+ :transform:
+'400100264':
+ :text: '147'
+ :tag: 852$d
+ :transform:
+'400100275':
+ :text: '149'
+ :tag: 852$d
+ :transform:
+'402003322':
+ :text: '150'
+ :tag: 852$d
+ :transform:
+'400100279':
+ :text: '152'
+ :tag: 852$d
+ :transform:
+'400100281':
+ :text: '153'
+ :tag: 852$d
+ :transform:
+'402006075':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006076':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006073':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006074':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402003434':
+ :text: '177'
+ :tag: 852$d
+ :transform:
+'402006080':
+ :text: '237'
+ :tag: 852$d
+ :transform:
+'400110800':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400100287':
+ :text: '278'
+ :tag: 852$d
+ :transform:
+'400100253':
+ :text: '304'
+ :tag: 852$d
+ :transform:
+'402003539':
+ :text: '317'
+ :tag: 852$d
+ :transform:
+'402003551':
+ :text: '318'
+ :tag: 852$d
+ :transform:
+'402003363':
+ :text: '403'
+ :tag: 852$d
+ :transform:
+'400100276':
+ :text: '405'
+ :tag: 852$d
+ :transform:
+'400100263':
+ :text: '441'
+ :tag: 852$d
+ :transform:
+'402003297':
+ :text: '443'
+ :tag: 852$d
+ :transform:
+'402003298':
+ :text: '444'
+ :tag: 852$d
+ :transform:
+'402003278':
+ :text: '447'
+ :tag: 852$d
+ :transform:
+'402003480':
+ :text: '468'
+ :tag: 852$d
+ :transform:
+'402003639':
+ :text: '470'
+ :tag: 852$d
+ :transform:
+'402003646':
+ :text: '471'
+ :tag: 852$d
+ :transform:
+'402003432':
+ :text: '473'
+ :tag: 852$d
+ :transform:
+'402003545':
+ :text: '474'
+ :tag: 852$d
+ :transform:
+'402003582':
+ :text: '475'
+ :tag: 852$d
+ :transform:
+'400100234':
+ :text: '482'
+ :tag: 852$d
+ :transform:
+'400100243':
+ :text: '486'
+ :tag: 852$d
+ :transform:
+'400100235':
+ :text: '520'
+ :tag: 852$d
+ :transform:
+'400100267':
+ :text: '532'
+ :tag: 852$d
+ :transform:
+'400100288':
+ :text: '547'
+ :tag: 852$d
+ :transform:
+'400100273':
+ :text: '618'
+ :tag: 852$d
+ :transform:
+'402003583':
+ :text: '638'
+ :tag: 852$d
+ :transform:
+'400107105':
+ :text: '698'
+ :tag: 852$d
+ :transform:
+'402010906':
+ :text: '735'
+ :tag: 852$d
+ :transform:
+'402010902':
+ :text: '736'
+ :tag: 852$d
+ :transform:
+'402010905':
+ :text: '736'
+ :tag: 852$d
+ :transform:
+'409001142':
+ :text: '736'
+ :tag: 852$d
+ :transform:
+'402010904':
+ :text: '737'
+ :tag: 852$d
+ :transform:
+'400103394':
+ :text: '772,9'
+ :tag: 852$d
+ :transform:
+'400008420':
+ :text: "[MGZ]No. 19"
+ :tag: 852$d
+ :transform:
+'402003506':
+ :text: '836'
+ :tag: 852$d
+ :transform:
+'402006079':
+ :text: '843'
+ :tag: 852$d
+ :transform:
+'402003587':
+ :text: '1015'
+ :tag: 852$d
+ :transform:
+'402003171':
+ :text: '1303'
+ :tag: 852$d
+ :transform:
+'402003012':
+ :text: '1514'
+ :tag: 852$d
+ :transform:
+'402002939':
+ :text: '7886'
+ :tag: 852$d
+ :transform:
+'402002920':
+ :text: '10159.'
+ :tag: 852$d
+ :transform:
+'402002972':
+ :text: '13899'
+ :tag: 852$d
+ :transform:
+'402002990':
+ :text: '20796'
+ :tag: 852$d
+ :transform:
+'402003162':
+ :text: '22045.'
+ :tag: 852$d
+ :transform:
+'402003042':
+ :text: '26237'
+ :tag: 852$d
+ :transform:
+'402002988':
+ :text: '29638'
+ :tag: 852$d
+ :transform:
+'402002960':
+ :text: '30495'
+ :tag: 852$d
+ :transform:
+'402002900':
+ :text: '33868.'
+ :tag: 852$d
+ :transform:
+'402002971':
+ :text: '36778'
+ :tag: 852$d
+ :transform:
+'402003024':
+ :text: '42978'
+ :tag: 852$d
+ :transform:
+'402002893':
+ :text: '51955'
+ :tag: 852$d
+ :transform:
+'402002914':
+ :text: '62712.'
+ :tag: 852$d
+ :transform:
+'402003045':
+ :text: '67854'
+ :tag: 852$d
+ :transform:
+'402002986':
+ :text: '72826'
+ :tag: 852$d
+ :transform:
+'402003039':
+ :text: '77868'
+ :tag: 852$d
+ :transform:
+'402003044':
+ :text: '79320'
+ :tag: 852$d
+ :transform:
+'402003025':
+ :text: '80041'
+ :tag: 852$d
+ :transform:
+'402003048':
+ :text: '80431'
+ :tag: 852$d
+ :transform:
+'402002928':
+ :text: '81338'
+ :tag: 852$d
+ :transform:
+'402003035':
+ :text: '81816'
+ :tag: 852$d
+ :transform:
+'402003033':
+ :text: '81818'
+ :tag: 852$d
+ :transform:
+'402002927':
+ :text: '81886'
+ :tag: 852$d
+ :transform:
+'402002919':
+ :text: '83779'
+ :tag: 852$d
+ :transform:
+'402002894':
+ :text: '83890'
+ :tag: 852$d
+ :transform:
+'402002924':
+ :text: '83965'
+ :tag: 852$d
+ :transform:
+'402002930':
+ :text: '85568'
+ :tag: 852$d
+ :transform:
+'402002976':
+ :text: '85644'
+ :tag: 852$d
+ :transform:
+'402002922':
+ :text: '87882'
+ :tag: 852$d
+ :transform:
+'402002923':
+ :text: '87883'
+ :tag: 852$d
+ :transform:
+'402002917':
+ :text: '88044'
+ :tag: 852$d
+ :transform:
+'402002918':
+ :text: '89656'
+ :tag: 852$d
+ :transform:
+'402002979':
+ :text: '89924'
+ :tag: 852$d
+ :transform:
+'402003030':
+ :text: '92902.'
+ :tag: 852$d
+ :transform:
+'402002925':
+ :text: '93961'
+ :tag: 852$d
+ :transform:
+'402002910':
+ :text: '94524'
+ :tag: 852$d
+ :transform:
+'402003046':
+ :text: '94524'
+ :tag: 852$d
+ :transform:
+'402003038':
+ :text: '95186'
+ :tag: 852$d
+ :transform:
+'402003034':
+ :text: '98845'
+ :tag: 852$d
+ :transform:
+'402003040':
+ :text: '99558'
+ :tag: 852$d
+ :transform:
+'402003037':
+ :text: '99561'
+ :tag: 852$d
+ :transform:
+'402003026':
+ :text: '100384'
+ :tag: 852$d
+ :transform:
+'402003041':
+ :text: '100449'
+ :tag: 852$d
+ :transform:
+'402003001':
+ :text: '127369'
+ :tag: 852$d
+ :transform:
+'402002969':
+ :text: '344830.'
+ :tag: 852$d
+ :transform:
+'402003036':
+ :text: "?92177?"
+ :tag: 852$d
+ :transform:
+'400008399':
+ :text: No. 92
+ :tag: 852$d
+ :transform:
+'400008394':
+ :text: "[MGZ] No. 350"
+ :tag: 852$d
+ :transform:
+'402010953':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010954':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010955':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010956':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010957':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010958':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010959':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010960':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010961':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010962':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010963':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010964':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010965':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010966':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402010967':
+ :text: Ms Kelt 32,2
+ :tag: 852$d
+ :transform:
+'402011047':
+ :text: Msk K 27,2
+ :tag: 852$d
+ :transform:
+'410003753':
+ :text: "[1935 G 2865]"
+ :tag: 541$e
+ :transform:
+'400150411':
+ :text: "[1958 G 6691]"
+ :tag: 541$e
+ :transform:
+'409002366':
+ :text: "[1958 G 6691]"
+ :tag: 541$e
+ :transform:
+'409002367':
+ :text: "[1958 G 6691]"
+ :tag: 541$e
+ :transform:
+'409002369':
+ :text: "[1958 G 6691]"
+ :tag: 541$e
+ :transform:
+'409002370':
+ :text: "[1958 G 6691]"
+ :tag: 541$e
+ :transform:
+'409002376':
+ :text: "[1958 G 6691]"
+ :tag: 541$e
+ :transform:
+'409000537':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000574':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000647':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000648':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000649':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000650':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000651':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000681':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000703':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000704':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000726':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000727':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000728':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000729':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000730':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000733':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000736':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000746':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000752':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000758':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000759':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000847':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000848':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000849':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409000850':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001206':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001207':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001208':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001209':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001210':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001211':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001212':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001213':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001214':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001215':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001216':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001217':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001218':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001219':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001220':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001221':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001222':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001223':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001224':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001225':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'409001226':
+ :text: "[1962 G 6569]"
+ :tag: 541$e
+ :transform:
+'400150083':
+ :text: "[1963 G 3865]"
+ :tag: 541$e
+ :transform:
+'409001241':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001242':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001243':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001244':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001245':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001246':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001247':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001248':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001249':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001250':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001251':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001252':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001253':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001254':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001255':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001256':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001257':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001258':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001259':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001260':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001261':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001262':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001263':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001264':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001265':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001266':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001267':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001268':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001269':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001270':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001271':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001272':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001273':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001274':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001275':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001276':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001277':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001278':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001279':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001280':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001281':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001282':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001283':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001284':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001285':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001286':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001287':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001288':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001289':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001290':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001291':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001292':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001293':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001294':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001295':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001296':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001297':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001298':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001299':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001300':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001301':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001302':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001303':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001304':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001305':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001306':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001307':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001308':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001309':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001310':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001311':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001312':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001313':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001314':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001315':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001316':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001317':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001318':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001319':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001320':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001321':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001322':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001323':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001324':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001325':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001326':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001327':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001328':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001329':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001330':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001331':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001332':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001333':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001334':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001335':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001336':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001337':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001338':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001339':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001340':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001341':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001342':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001343':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001344':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001345':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001346':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001347':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001348':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001349':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001350':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001351':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001352':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001353':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001354':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001355':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001356':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001357':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001358':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001359':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001360':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001361':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001362':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001363':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001364':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001365':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001366':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001367':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001368':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001369':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001370':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001371':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001372':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001373':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001374':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001375':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001376':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001377':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001378':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001379':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001380':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001381':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001382':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001383':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001384':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001385':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001386':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001387':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001388':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001389':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001390':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001391':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001392':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001393':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001394':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001395':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001396':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001397':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001398':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001399':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001400':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001401':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001402':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001403':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001404':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001405':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001406':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001407':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'409001408':
+ :text: "[1976 G 1837]"
+ :tag: 541$e
+ :transform:
+'400102448':
+ :text: "[48]"
+ :tag: 852$d
+ :transform:
+'407001609':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'407001616':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'407001620':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'407001621':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'407001622':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'407001623':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'407001624':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'407001625':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'407001626':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002523':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002524':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002527':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002528':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002542':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002545':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002559':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002571':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002574':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002576':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002577':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002585':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002599':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002600':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002601':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'409002602':
+ :text: "[72 G 5098]"
+ :tag: 541$e
+ :transform: "[1972 G 5098]"
+'407001610':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001614':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001615':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001617':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001618':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001619':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001637':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001670':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001671':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001672':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001674':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001675':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001676':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001677':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001678':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001679':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001680':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001681':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001682':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001683':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001684':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001685':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001686':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001687':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001688':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001689':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001699':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001700':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001701':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001702':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001703':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001704':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001705':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001706':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001707':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001708':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001709':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001710':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001711':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001712':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001713':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001714':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001715':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001716':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001717':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001718':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001719':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001728':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001729':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001730':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001731':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001732':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001733':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001734':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001735':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001736':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001737':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001739':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001745':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001753':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001757':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001759':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001760':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001761':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001769':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'407001772':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002608':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002635':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002636':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002637':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002638':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002639':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002640':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002641':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002642':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002643':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002644':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002645':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002646':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002647':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002648':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002649':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002650':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002651':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002652':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002653':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002654':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002655':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002656':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002657':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002658':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002659':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002660':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002661':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002662':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002663':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002664':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002665':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002666':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002667':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002668':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002669':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002670':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002671':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002672':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002673':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002674':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002675':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002676':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002677':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002678':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002679':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002680':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002681':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002682':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002683':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002684':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002685':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002686':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002687':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002688':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002689':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002690':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002691':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002692':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002693':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002694':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002695':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002696':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002697':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002698':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002699':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002700':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002701':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002702':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002703':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002704':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002705':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002706':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002707':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002708':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002709':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002710':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002711':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002712':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002713':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002714':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002715':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002716':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002717':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002718':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002719':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002720':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002721':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002722':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002723':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002724':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002725':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002726':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002727':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002728':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002729':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002730':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002731':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002732':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002733':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002734':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002735':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002736':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002737':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002738':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002739':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002740':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002741':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002742':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002743':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002744':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002745':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002746':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002747':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002748':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002749':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002750':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002751':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002752':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002753':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002754':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002755':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002756':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002757':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002758':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002759':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002760':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002761':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002762':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002763':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002764':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002765':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002766':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002767':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002768':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002769':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002770':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002771':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002772':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002773':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002774':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002775':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002776':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002777':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002778':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002779':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002780':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002781':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002782':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002783':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002784':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002785':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002786':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002787':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002788':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002789':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002790':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002791':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002792':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002793':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002794':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002795':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002796':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002797':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002798':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002799':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002800':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002801':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002802':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002803':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002804':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002805':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002806':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002807':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002808':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002809':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002810':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002811':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002812':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002813':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002814':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002815':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002816':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002817':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002818':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002819':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002820':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002821':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002822':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002823':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002824':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002825':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002826':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002853':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002872':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002873':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002874':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002875':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002876':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002877':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002878':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002879':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002880':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002881':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002882':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002883':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002884':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002885':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002886':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002887':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002888':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002889':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002890':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002891':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002892':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002893':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002894':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002895':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002896':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002897':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002898':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002899':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002900':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002901':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002902':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002903':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002904':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002905':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002906':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002907':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002908':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002909':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002910':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002911':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002912':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002913':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002914':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002915':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002916':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002917':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002918':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002919':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002920':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002921':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002922':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002923':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002924':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002925':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002926':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002927':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002928':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002929':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002930':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002931':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002932':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002933':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002934':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002935':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002936':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002937':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002938':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002939':
+ :text: "[75 G 1236]"
+ :tag: 541$e
+ :transform: "[1975 G 1236]"
+'409002865':
+ :text: "[76 G 7509]"
+ :tag: 541$e
+ :transform: "[1976 G 7509]"
+'409002046':
+ :text: "[77 K 779]"
+ :tag: 541$e
+ :transform: "[1977 K 779]"
+'409002044':
+ :text: "[77 K 779]"
+ :tag: 541$e
+ :transform: "[1977 K 779]"
+'409002045':
+ :text: "[77 K 779]"
+ :tag: 541$e
+ :transform: "[1977 K 779]"
+'409002047':
+ :text: "[77 K 779]"
+ :tag: 541$e
+ :transform: "[1977 K 779]"
+'409002945':
+ :text: "[78 G 1146]"
+ :tag: 541$e
+ :transform: "[1978 G 1146]"
+'409002946':
+ :text: "[78 G 1146]"
+ :tag: 541$e
+ :transform: "[1978 G 1146]"
+'409002947':
+ :text: "[78 G 1146]"
+ :tag: 541$e
+ :transform: "[1978 G 1146]"
+'407001779':
+ :text: "[80 G 5260]"
+ :tag: 541$e
+ :transform: "[1980 G 5260]"
+'407001780':
+ :text: "[80 G 5260]"
+ :tag: 541$e
+ :transform: "[1980 G 5260]"
+'407001781':
+ :text: "[80 G 5260]"
+ :tag: 541$e
+ :transform: "[1980 G 5260]"
+'409002948':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002949':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002950':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002951':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002952':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002953':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002954':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002955':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002956':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002957':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002958':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002959':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002960':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002961':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002962':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002963':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002964':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002965':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002966':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002967':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002968':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002969':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002970':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002971':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002972':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002973':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002974':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002975':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002976':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002977':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002978':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002979':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002980':
+ :text: "[84 K 56]"
+ :tag: 541$e
+ :transform: "[1984 K 56]"
+'409002981':
+ :text: Ms M 20/Beil.
+ :tag: 852$d
+ :transform:
+'400007912':
+ :text: "[AMG] No. 33"
+ :tag: 852$d
+ :transform:
+'400007993':
+ :text: "[MGZ] No. 1"
+ :tag: 852$d
+ :transform:
+'400008007':
+ :text: "[MGZ] No. 1011"
+ :tag: 852$d
+ :transform:
+'400008024':
+ :text: "[MGZ] No. 1012"
+ :tag: 852$d
+ :transform:
+'400008016':
+ :text: "[MGZ] No. 1013"
+ :tag: 852$d
+ :transform:
+'400008029':
+ :text: "[MGZ] No. 1014"
+ :tag: 852$d
+ :transform:
+'400007997':
+ :text: "[MGZ] No. 1015"
+ :tag: 852$d
+ :transform:
+'400007995':
+ :text: "[MGZ] No. 1016"
+ :tag: 852$d
+ :transform:
+'400008008':
+ :text: "[MGZ] No. 1017"
+ :tag: 852$d
+ :transform:
+'400008003':
+ :text: "[MGZ] No. 1018"
+ :tag: 852$d
+ :transform:
+'400008027':
+ :text: "[MGZ] No. 1019"
+ :tag: 852$d
+ :transform:
+'400008025':
+ :text: "[MGZ] No. 1020"
+ :tag: 852$d
+ :transform:
+'400008004':
+ :text: "[MGZ] No. 1021"
+ :tag: 852$d
+ :transform:
+'400008006':
+ :text: "[MGZ] No. 1022"
+ :tag: 852$d
+ :transform:
+'400008000':
+ :text: "[MGZ] No. 1023"
+ :tag: 852$d
+ :transform:
+'400008026':
+ :text: "[MGZ] No. 1024"
+ :tag: 852$d
+ :transform:
+'400008001':
+ :text: "[MGZ] No. 1026"
+ :tag: 852$d
+ :transform:
+'400007998':
+ :text: "[MGZ] No. 1027"
+ :tag: 852$d
+ :transform:
+'400008021':
+ :text: "[MGZ] No. 1029"
+ :tag: 852$d
+ :transform:
+'400008189':
+ :text: "[MGZ] No. 106"
+ :tag: 852$d
+ :transform:
+'400008096':
+ :text: "[MGZ] No. 1092"
+ :tag: 852$d
+ :transform:
+'400008203':
+ :text: "[MGZ] No. 1094"
+ :tag: 852$d
+ :transform:
+'400007958':
+ :text: "[MGZ] No. 1108"
+ :tag: 852$d
+ :transform:
+'400007871':
+ :text: "[MGZ] No. 1114"
+ :tag: 852$d
+ :transform:
+'400007876':
+ :text: "[MGZ] No. 1115"
+ :tag: 852$d
+ :transform:
+'400007923':
+ :text: "[MGZ] No. 1116"
+ :tag: 852$d
+ :transform:
+'400008034':
+ :text: "[MGZ] No. 1184"
+ :tag: 852$d
+ :transform:
+'400008038':
+ :text: "[MGZ] No. 1186"
+ :tag: 852$d
+ :transform:
+'400007935':
+ :text: "[MGZ] No. 1567"
+ :tag: 852$d
+ :transform:
+'400008206':
+ :text: "[MGZ] No. 16"
+ :tag: 852$d
+ :transform:
+'400008237':
+ :text: "[MGZ] No. 17"
+ :tag: 852$d
+ :transform:
+'400008419':
+ :text: "[MGZ] No. 19"
+ :tag: 852$d
+ :transform:
+'400008022':
+ :text: "[MGZ] No. 26"
+ :tag: 852$d
+ :transform:
+'400008040':
+ :text: "[MGZ] No. 345"
+ :tag: 852$d
+ :transform:
+'400007882':
+ :text: "[MGZ] No. 354"
+ :tag: 852$d
+ :transform:
+'400008085':
+ :text: "[MGZ] No. 360"
+ :tag: 852$d
+ :transform:
+'400008212':
+ :text: "[MGZ] No. 86"
+ :tag: 852$d
+ :transform:
+'400008386':
+ :text: "[MGZ] No. 374"
+ :tag: 852$d
+ :transform:
+'400008395':
+ :text: "[MGZ] No. 375"
+ :tag: 852$d
+ :transform:
+'400008396':
+ :text: "[MGZ] No. 381"
+ :tag: 852$d
+ :transform:
+'400008244':
+ :text: "[MGZ] No. 386"
+ :tag: 852$d
+ :transform:
+'400008429':
+ :text: "[MGZ] No. 389"
+ :tag: 852$d
+ :transform:
+'400007866':
+ :text: "[MGZ] No. 391"
+ :tag: 852$d
+ :transform:
+'400007868':
+ :text: "[MGZ] No. 393"
+ :tag: 852$d
+ :transform:
+'400008081':
+ :text: "[MGZ] No. 400"
+ :tag: 852$d
+ :transform:
+'400008080':
+ :text: "[MGZ] No. 401"
+ :tag: 852$d
+ :transform:
+'400008083':
+ :text: "[MGZ] No. 402"
+ :tag: 852$d
+ :transform:
+'400008084':
+ :text: "[MGZ] No. 404"
+ :tag: 852$d
+ :transform:
+'400007934':
+ :text: "[MGZ] No. 409"
+ :tag: 852$d
+ :transform:
+'400008282':
+ :text: "[MGZ] No. 411"
+ :tag: 852$d
+ :transform:
+'400008284':
+ :text: "[MGZ] No. 412"
+ :tag: 852$d
+ :transform:
+'400007988':
+ :text: "[MGZ] No. 423"
+ :tag: 852$d
+ :transform:
+'400008050':
+ :text: "[MGZ] No. 424"
+ :tag: 852$d
+ :transform:
+'400008157':
+ :text: "[MGZ] No. 427"
+ :tag: 852$d
+ :transform:
+'400008195':
+ :text: "[MGZ] No. 430"
+ :tag: 852$d
+ :transform:
+'400008259':
+ :text: "[MGZ] No. 433"
+ :tag: 852$d
+ :transform:
+'400008392':
+ :text: "[MGZ] No. 434"
+ :tag: 852$d
+ :transform:
+'400007911':
+ :text: "[MGZ] No. 436"
+ :tag: 852$d
+ :transform:
+'400007953':
+ :text: "[MGZ] No. 438"
+ :tag: 852$d
+ :transform:
+'400008090':
+ :text: "[MGZ] No. 440"
+ :tag: 852$d
+ :transform:
+'400007939':
+ :text: "[MGZ] No. 441"
+ :tag: 852$d
+ :transform:
+'400008141':
+ :text: "[MGZ] No. 442"
+ :tag: 852$d
+ :transform:
+'400008198':
+ :text: "[MGZ] No. 445"
+ :tag: 852$d
+ :transform:
+'400008258':
+ :text: "[MGZ] No. 446"
+ :tag: 852$d
+ :transform:
+'400008389':
+ :text: "[MGZ] No. 447"
+ :tag: 852$d
+ :transform:
+'400008285':
+ :text: "[MGZ] No. 454"
+ :tag: 852$d
+ :transform:
+'400008122':
+ :text: "[MGZ] No. 458"
+ :tag: 852$d
+ :transform:
+'400007954':
+ :text: "[MGZ] No. 476"
+ :tag: 852$d
+ :transform:
+'400008153':
+ :text: "[MGZ] No. 483"
+ :tag: 852$d
+ :transform:
+'400007858':
+ :text: "[MGZ] No. 492"
+ :tag: 852$d
+ :transform:
+'400007865':
+ :text: "[MGZ] No. 493"
+ :tag: 852$d
+ :transform:
+'400007887':
+ :text: "[MGZ] No. 495"
+ :tag: 852$d
+ :transform:
+'400007886':
+ :text: "[MGZ] No. 496"
+ :tag: 852$d
+ :transform:
+'400007905':
+ :text: "[MGZ] No. 497"
+ :tag: 852$d
+ :transform:
+'400007952':
+ :text: "[MGZ] No. 498"
+ :tag: 852$d
+ :transform:
+'400008086':
+ :text: "[MGZ] No. 5"
+ :tag: 852$d
+ :transform:
+'400008123':
+ :text: "[MGZ] No. 501"
+ :tag: 852$d
+ :transform:
+'400008126':
+ :text: "[MGZ] No. 502"
+ :tag: 852$d
+ :transform:
+'400008192':
+ :text: "[MGZ] No. 509"
+ :tag: 852$d
+ :transform:
+'400008204':
+ :text: "[MGZ] No. 510"
+ :tag: 852$d
+ :transform:
+'400008197':
+ :text: "[MGZ] No. 511"
+ :tag: 852$d
+ :transform:
+'400008202':
+ :text: "[MGZ] No. 513"
+ :tag: 852$d
+ :transform:
+'400008208':
+ :text: "[MGZ] No. 514"
+ :tag: 852$d
+ :transform:
+'400008196':
+ :text: "[MGZ] No. 515"
+ :tag: 852$d
+ :transform:
+'400008239':
+ :text: "[MGZ] No. 516"
+ :tag: 852$d
+ :transform:
+'400008252':
+ :text: "[MGZ] No. 517"
+ :tag: 852$d
+ :transform:
+'400008260':
+ :text: "[MGZ] No. 519"
+ :tag: 852$d
+ :transform:
+'400008268':
+ :text: "[MGZ] No. 521"
+ :tag: 852$d
+ :transform:
+'400008286':
+ :text: "[MGZ] No. 522"
+ :tag: 852$d
+ :transform:
+'400008400':
+ :text: "[MGZ] No. 523"
+ :tag: 852$d
+ :transform:
+'400008403':
+ :text: "[MGZ] No. 524"
+ :tag: 852$d
+ :transform:
+'400008402':
+ :text: "[MGZ] No. 525"
+ :tag: 852$d
+ :transform:
+'400007850':
+ :text: "[MGZ] No. 528"
+ :tag: 852$d
+ :transform:
+'400007855':
+ :text: "[MGZ] No. 529"
+ :tag: 852$d
+ :transform:
+'400007863':
+ :text: "[MGZ] No. 530"
+ :tag: 852$d
+ :transform:
+'400007873':
+ :text: "[MGZ] No. 531"
+ :tag: 852$d
+ :transform:
+'400007880':
+ :text: "[MGZ] No. 538"
+ :tag: 852$d
+ :transform:
+'400008037':
+ :text: "[MGZ] No. 54"
+ :tag: 852$d
+ :transform:
+'400007910':
+ :text: "[MGZ] No. 552"
+ :tag: 852$d
+ :transform:
+'400007984':
+ :text: "[MGZ] No. 573"
+ :tag: 852$d
+ :transform:
+'400008188':
+ :text: "[MGZ] No. 58"
+ :tag: 852$d
+ :transform:
+'400008017':
+ :text: "[MGZ] No. 583"
+ :tag: 852$d
+ :transform:
+'400007879':
+ :text: "[MGZ] No. 59"
+ :tag: 852$d
+ :transform:
+'400008005':
+ :text: "[MGZ] No. 594"
+ :tag: 852$d
+ :transform:
+'400008013':
+ :text: "[MGZ] No. 597"
+ :tag: 852$d
+ :transform:
+'400008020':
+ :text: "[MGZ] No. 598"
+ :tag: 852$d
+ :transform:
+'400008012':
+ :text: "[MGZ] No. 599"
+ :tag: 852$d
+ :transform:
+'400008015':
+ :text: "[MGZ] No. 602"
+ :tag: 852$d
+ :transform:
+'400008018':
+ :text: "[MGZ] No. 604"
+ :tag: 852$d
+ :transform:
+'400008011':
+ :text: "[MGZ] No. 605"
+ :tag: 852$d
+ :transform:
+'400008010':
+ :text: "[MGZ] No. 606"
+ :tag: 852$d
+ :transform:
+'400008232':
+ :text: "[MGZ] No. 63"
+ :tag: 852$d
+ :transform:
+'400008231':
+ :text: "[MGZ] No. 674"
+ :tag: 852$d
+ :transform:
+'400008230':
+ :text: "[MGZ] No. 675"
+ :tag: 852$d
+ :transform:
+'400008234':
+ :text: "[MGZ] No. 676"
+ :tag: 852$d
+ :transform:
+'400008238':
+ :text: "[MGZ] No. 677"
+ :tag: 852$d
+ :transform:
+'400008240':
+ :text: "[MGZ] No. 678"
+ :tag: 852$d
+ :transform:
+'400008275':
+ :text: "[MGZ] No. 709"
+ :tag: 852$d
+ :transform:
+'400007853':
+ :text: "[MGZ] No. 736"
+ :tag: 852$d
+ :transform:
+'400007872':
+ :text: "[MGZ] No. 737"
+ :tag: 852$d
+ :transform:
+'400007914':
+ :text: "[MGZ] No. 743"
+ :tag: 852$d
+ :transform:
+'400007915':
+ :text: "[MGZ] No. 744"
+ :tag: 852$d
+ :transform:
+'400007922':
+ :text: "[MGZ] No. 746"
+ :tag: 852$d
+ :transform:
+'400007959':
+ :text: "[MGZ] No. 748"
+ :tag: 852$d
+ :transform:
+'400007980':
+ :text: "[MGZ] No. 752"
+ :tag: 852$d
+ :transform:
+'400008107':
+ :text: No. 6
+ :tag: 852$d
+ :transform:
+'400008125':
+ :text: "[MGZ] No. 760"
+ :tag: 852$d
+ :transform:
+'400008127':
+ :text: "[MGZ] No. 761"
+ :tag: 852$d
+ :transform:
+'400008205':
+ :text: "[MGZ] No. 772"
+ :tag: 852$d
+ :transform:
+'400008218':
+ :text: "[MGZ] No. 773"
+ :tag: 852$d
+ :transform:
+'400008215':
+ :text: "[MGZ] No. 774"
+ :tag: 852$d
+ :transform:
+'400008251':
+ :text: "[MGZ] No. 778"
+ :tag: 852$d
+ :transform:
+'400008249':
+ :text: "[MGZ] No. 779"
+ :tag: 852$d
+ :transform:
+'400008271':
+ :text: "[MGZ] No. 780./C"
+ :tag: 852$d
+ :transform:
+'400008410':
+ :text: "[MGZ] No. 781"
+ :tag: 852$d
+ :transform:
+'400008465':
+ :text: "[MGZ] No. 787"
+ :tag: 852$d
+ :transform:
+'400008098':
+ :text: "[MGZ] No. 788"
+ :tag: 852$d
+ :transform:
+'400007928':
+ :text: "[MGZ] No. 791"
+ :tag: 852$d
+ :transform:
+'400007929':
+ :text: "[MGZ] No. 791"
+ :tag: 852$d
+ :transform:
+'400007930':
+ :text: "[MGZ] No. 791"
+ :tag: 852$d
+ :transform:
+'400008131':
+ :text: "[MGZ] No. 793"
+ :tag: 852$d
+ :transform:
+'400008264':
+ :text: "[MGZ] No. 802"
+ :tag: 852$d
+ :transform:
+'400008145':
+ :text: "[MGZ] No. 803"
+ :tag: 852$d
+ :transform:
+'400007854':
+ :text: "[MGZ] No. 812"
+ :tag: 852$d
+ :transform:
+'400008427':
+ :text: "[MGZ] No. 819"
+ :tag: 852$d
+ :transform:
+'400008417':
+ :text: "[MGZ] No. 825"
+ :tag: 852$d
+ :transform:
+'400008428':
+ :text: "[MGZ] No. 827"
+ :tag: 852$d
+ :transform:
+'400007840':
+ :text: "[MGZ] No. 836"
+ :tag: 852$d
+ :transform:
+'400008042':
+ :text: "[MGZ] No. 894"
+ :tag: 852$d
+ :transform:
+'400007945':
+ :text: No. 964
+ :tag: 852$d
+ :transform:
+'400007864':
+ :text: "[MGZ] No. 90./ 352."
+ :tag: 852$d
+ :transform:
+'400008444':
+ :text: "[MGZ] No. 903"
+ :tag: 852$d
+ :transform:
+'400008030':
+ :text: "[MGZ] No. 904"
+ :tag: 852$d
+ :transform:
+'400008398':
+ :text: "[MGZ] No. 92"
+ :tag: 852$d
+ :transform:
+'400008032':
+ :text: "[MGZ] No. 944"
+ :tag: 852$d
+ :transform:
+'400008041':
+ :text: "[MGZ] No. 945"
+ :tag: 852$d
+ :transform:
+'400008031':
+ :text: "[MGZ] No. 946"
+ :tag: 852$d
+ :transform:
+'400008241':
+ :text: "[MGZ] No. 99"
+ :tag: 852$d
+ :transform:
+'400008376':
+ :text: "[MGZ] X 10"
+ :tag: 852$d
+ :transform:
+'400008421':
+ :text: "[MGZ]No. 387"
+ :tag: 852$d
+ :transform:
+'400008415':
+ :text: "[MGZ]No. 420"
+ :tag: 852$d
+ :transform:
+'400008424':
+ :text: "[MGZ]No. 727"
+ :tag: 852$d
+ :transform:
+'400011293':
+ :text: "[No.] 38."
+ :tag: 852$d
+ :transform:
+'409001419':
+ :text: 00 G 6117
+ :tag: 541$e
+ :transform: 2000 G 6117
+'409001420':
+ :text: 00 G 6117
+ :tag: 541$e
+ :transform: 2000 G 6117
+'409001421':
+ :text: 00 G 6117
+ :tag: 541$e
+ :transform: 2000 G 6117
+'400014696':
+ :text: 00 K 1297
+ :tag: 541$e
+ :transform: 2000 K 1297
+'400196085':
+ :text: Ms. H.H.IV 182 (152) (Ms.1225)
+ :tag: 852$d
+ :transform:
+'400196084':
+ :text: Ms. H.H.Iv 182 (68) (Ms.1226)
+ :tag: 852$d
+ :transform:
+'400196106':
+ :text: Ms. H.H.IV 182 (87) (Ms.1224)
+ :tag: 852$d
+ :transform:
+'400196074':
+ :text: Ms. H.H.IV 182 (76) (Ms.1204)
+ :tag: 852$d
+ :transform:
+'400196076':
+ :text: Ms. H.H.IV 182 (79) (Ms.1206)
+ :tag: 852$d
+ :transform:
+'402003700':
+ :text: 109 e
+ :tag: 852$d
+ :transform:
+'409001552':
+ :text: 1899 K 2171
+ :tag: 541$e
+ :transform:
+'409001546':
+ :text: 1899 K 2346
+ :tag: 541$e
+ :transform:
+'400055970':
+ :text: 18a
+ :tag: 852$d
+ :transform:
+'409001571':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001572':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001573':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001574':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001575':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001576':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001577':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001578':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001579':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001580':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001581':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001582':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001583':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001584':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001585':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001586':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001587':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001588':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001589':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001590':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001591':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001592':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001593':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001594':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001595':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001596':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001597':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001598':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001599':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001600':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001601':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001602':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001603':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001604':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001605':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001606':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001607':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'409001608':
+ :text: 1901 K 847
+ :tag: 541$e
+ :transform:
+'400014663':
+ :text: 1931 G 1939
+ :tag: 541$e
+ :transform:
+'409001547':
+ :text: 1931 G 1939
+ :tag: 541$e
+ :transform:
+'409001548':
+ :text: 1931 G 1939
+ :tag: 541$e
+ :transform:
+'409001549':
+ :text: 1931 G 1939
+ :tag: 541$e
+ :transform:
+'402011092':
+ :text: Msk K 35
+ :tag: 852$d
+ :transform:
+'409001551':
+ :text: 1934 G 2041
+ :tag: 541$e
+ :transform:
+'409001545':
+ :text: 1934 G 802
+ :tag: 541$e
+ :transform:
+'409001431':
+ :text: 1934 G 803
+ :tag: 541$e
+ :transform:
+'402011091':
+ :text: Msk K 34
+ :tag: 852$d
+ :transform:
+'402011093':
+ :text: Msk K 36
+ :tag: 852$d
+ :transform:
+'402011103':
+ :text: Msk K 5
+ :tag: 852$d
+ :transform:
+'402011033':
+ :text: Msk K 4,1
+ :tag: 852$d
+ :transform:
+'402011034':
+ :text: Msk K,1
+ :tag: 852$d
+ :transform:
+'402011035':
+ :text: Msk K 4,1
+ :tag: 852$d
+ :transform:
+'402011036':
+ :text: Msk K 4,2
+ :tag: 852$d
+ :transform:
+'402011037':
+ :text: Msk K 4,2
+ :tag: 852$d
+ :transform:
+'402011038':
+ :text: Msk K 4,2
+ :tag: 852$d
+ :transform:
+'402010912':
+ :text: Msk K 28
+ :tag: 852$d
+ :transform:
+'402010915':
+ :text: Msk K 26
+ :tag: 852$d
+ :transform:
+'409000204':
+ :text: Msk K 26
+ :tag: 852$d
+ :transform:
+'402010922':
+ :text: Msk K 23
+ :tag: 852$d
+ :transform:
+'402011060':
+ :text: Msk K 25
+ :tag: 852$d
+ :transform:
+'402011061':
+ :text: Msk K 25
+ :tag: 852$d
+ :transform:
+'402011062':
+ :text: Msk K 25
+ :tag: 852$d
+ :transform:
+'402011063':
+ :text: Msk K 25
+ :tag: 852$d
+ :transform:
+'402011064':
+ :text: Msk K 25
+ :tag: 852$d
+ :transform:
+'402011078':
+ :text: Msk K 25
+ :tag: 852$d
+ :transform:
+'402011104':
+ :text: 1934 G 889
+ :tag: 541$e
+ :transform:
+'402011105':
+ :text: Msk K 25
+ :tag: 852$d
+ :transform:
+'402011106':
+ :text: Msk K 25
+ :tag: 852$d
+ :transform:
+'402011107':
+ :text: Msk K 25
+ :tag: 852$d
+ :transform:
+'402010920':
+ :text: Msk K 21,2
+ :tag: 852$d
+ :transform:
+'402010921':
+ :text: Msk K 21,1
+ :tag: 852$d
+ :transform:
+'402010913':
+ :text: Msk K 18
+ :tag: 852$d
+ :transform:
+'409000202':
+ :text: Msk K 18
+ :tag: 852$d
+ :transform:
+'402011073':
+ :text: Msk K 13
+ :tag: 852$d
+ :transform:
+'402011074':
+ :text: Msk K 13
+ :tag: 852$d
+ :transform:
+'402011027':
+ :text: Msk K 11,1
+ :tag: 852$d
+ :transform:
+'409000207':
+ :text: Msk K 11,2
+ :tag: 852$d
+ :transform:
+'402011028':
+ :text: Msk K 8
+ :tag: 852$d
+ :transform:
+'402011029':
+ :text: Msk K 9,1
+ :tag: 852$d
+ :transform:
+'402011030':
+ :text: Msk K 9,3
+ :tag: 852$d
+ :transform:
+'402011031':
+ :text: Msk K 9,2
+ :tag: 852$d
+ :transform:
+'402010917':
+ :text: Msk K 7
+ :tag: 852$d
+ :transform:
+'402010914':
+ :text: Msk K 3
+ :tag: 852$d
+ :transform:
+'409000203':
+ :text: Msk K 3
+ :tag: 852$d
+ :transform:
+'402011020':
+ :text: Msk K 31
+ :tag: 852$d
+ :transform:
+'402011013':
+ :text: Msk K 29
+ :tag: 852$d
+ :transform:
+'402011015':
+ :text: Msk K 6
+ :tag: 852$d
+ :transform:
+'402011076':
+ :text: Msk K 14
+ :tag: 852$d
+ :transform:
+'402011018':
+ :text: Msk K 16
+ :tag: 852$d
+ :transform:
+'409000206':
+ :text: Msk K 16
+ :tag: 852$d
+ :transform:
+'402011017':
+ :text: Msk K 30
+ :tag: 852$d
+ :transform:
+'402011023':
+ :text: Msk K 15
+ :tag: 852$d
+ :transform:
+'402010916':
+ :text: Msk K 2
+ :tag: 852$d
+ :transform:
+'409000205':
+ :text: Msk K 2
+ :tag: 852$d
+ :transform:
+'402011109':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402011110':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402011111':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402011112':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402011113':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402011114':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402011115':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402011116':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402011117':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402011118':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402011119':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402011120':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402011121':
+ :text: Msk K 17
+ :tag: 852$d
+ :transform:
+'402010938':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010939':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010940':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010941':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010942':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010943':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010944':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010945':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010946':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010947':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010948':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010949':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010950':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010951':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010952':
+ :text: Ms Kelt 32,1
+ :tag: 852$d
+ :transform:
+'402010968':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010969':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010970':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010971':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010972':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010973':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010974':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010975':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010976':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010977':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010978':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010979':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010980':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010981':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010982':
+ :text: Msk K 33
+ :tag: 852$d
+ :transform:
+'402010983':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010984':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010985':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010986':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010987':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010988':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010989':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010990':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010991':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010992':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010993':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010994':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010995':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010996':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'402010997':
+ :text: Msk K 32,2
+ :tag: 852$d
+ :transform:
+'409000208':
+ :text: Ms Kelt 32,4
+ :tag: 852$d
+ :transform:
+'402011049':
+ :text: Ms Kelt 10,1
+ :tag: 852$d
+ :transform:
+'402011050':
+ :text: Msk K 10,3 (1-61)
+ :tag: 852$d
+ :transform:
+'402011051':
+ :text: Msk K 10,4 (1-65)
+ :tag: 852$d
+ :transform:
+'402011052':
+ :text: Ms Kelt 10,2
+ :tag: 852$d
+ :transform:
+'402010929':
+ :text: Ms Kelt 20,1
+ :tag: 852$d
+ :transform:
+'402010930':
+ :text: Msk K 20,3-4
+ :tag: 852$d
+ :transform:
+'402010931':
+ :text: Msk K 20,2
+ :tag: 852$d
+ :transform:
+'402010925':
+ :text: Ms Kelt 12,1
+ :tag: 852$d
+ :transform:
+'402010926':
+ :text: Msk K 12,4
+ :tag: 852$d
+ :transform:
+'402010927':
+ :text: Msk K 12,3
+ :tag: 852$d
+ :transform:
+'402010928':
+ :text: Msk K 12,2
+ :tag: 852$d
+ :transform:
+'402010918':
+ :text: Ms Kelt 19,1
+ :tag: 852$d
+ :transform:
+'402010919':
+ :text: Msk K 19,2
+ :tag: 852$d
+ :transform:
+'402011043':
+ :text: Ms Kelt 22,1
+ :tag: 852$d
+ :transform:
+'402011044':
+ :text: Msk K 22,2 (1-56)
+ :tag: 852$d
+ :transform:
+'402010909':
+ :text: Ms Kelt 1,1
+ :tag: 852$d
+ :transform:
+'402010910':
+ :text: Msk K 1,2
+ :tag: 852$d
+ :transform:
+'402011079':
+ :text: Ms Kelt 24,1
+ :tag: 852$d
+ :transform:
+'402011081':
+ :text: Msk K 24,2
+ :tag: 852$d
+ :transform:
+'402011046':
+ :text: Ms Kelt 27,1
+ :tag: 852$d
+ :transform:
+'400014660':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014664':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014665':
+ :text: LB 351486
+ :tag: 852$d
+ :transform:
+'400014667':
+ :text: N|o 3
+ :tag: 852$d
+ :transform:
+'400014675':
+ :text: LB 351336
+ :tag: 852$d
+ :transform:
+'400014676':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014680':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014684':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014685':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014686':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014688':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014690':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014691':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014694':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014695':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014700':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014706':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014710':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400014713':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110500':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110501':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110502':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110503':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110504':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110505':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110506':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110507':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110508':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110509':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110510':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110511':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110512':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110513':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110514':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110515':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110516':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110517':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110518':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110519':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110520':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110521':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110522':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110523':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110525':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110526':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110527':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110528':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110529':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110538':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110558':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110566':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110585':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110596':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110602':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110655':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110683':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110684':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110685':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110686':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110687':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110688':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110689':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110690':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110691':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110692':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110693':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110694':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110695':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110696':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110697':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110698':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110699':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110700':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110701':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110702':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110703':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110704':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110705':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110706':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110707':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110708':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110709':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110710':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110711':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110712':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110713':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110714':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110715':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110716':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110717':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110718':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110719':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110720':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110721':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110722':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110723':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110725':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110726':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110727':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110730':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110731':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110743':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110755':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110756':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110757':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110758':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110759':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110760':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110761':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110762':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110763':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110764':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110765':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110766':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110767':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110768':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110769':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110770':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110771':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110772':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110773':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110774':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110775':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110776':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110777':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110778':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110779':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110780':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110781':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110782':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110783':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110784':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110793':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110794':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110799':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110802':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110803':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110804':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110805':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110806':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110807':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110808':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110813':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110814':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110819':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110840':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110841':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110846':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110847':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110851':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110853':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'400110863':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009680':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009681':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009689':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009690':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009691':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009692':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009693':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009710':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009721':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009731':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009734':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009738':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009741':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009742':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009746':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009749':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009754':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009763':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009768':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009775':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009833':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009840':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009847':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009854':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009855':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009870':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009871':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009872':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009873':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009874':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009875':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009876':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009877':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009878':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009881':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009882':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009883':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009884':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009891':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009892':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009893':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009898':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009901':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009912':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009924':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009931':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009932':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009939':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009964':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'409000513':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'409002477':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'409002478':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'409003554':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'409003555':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'409003556':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'409003557':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'409003558':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410001993':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410002718':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410002808':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410002822':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410002937':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410003076':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410003177':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410003265':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410003361':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410003989':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410003990':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410003991':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410004016':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410004034':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410004058':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410004063':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410004096':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410004114':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410004160':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410004408':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410004473':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'410004479':
+ :text: 1935 G 2865
+ :tag: 541$e
+ :transform:
+'402009848':
+ :text: 1936 G 2500
+ :tag: 541$e
+ :transform:
+'402009850':
+ :text: 1936 G 2501
+ :tag: 541$e
+ :transform:
+'402009849':
+ :text: 1936 G 2502
+ :tag: 541$e
+ :transform:
+'409003553':
+ :text: 1936 G 2503
+ :tag: 541$e
+ :transform:
+'402009725':
+ :text: 1936 G 2504
+ :tag: 541$e
+ :transform:
+'402009677':
+ :text: 1938 G 2942
+ :tag: 541$e
+ :transform:
+'402009531':
+ :text: 1939 G 1856
+ :tag: 541$e
+ :transform:
+'409001554':
+ :text: 1939 G 771
+ :tag: 541$e
+ :transform:
+'409001555':
+ :text: 1939 G 772
+ :tag: 541$e
+ :transform:
+'409001553':
+ :text: 1939 G 773
+ :tag: 541$e
+ :transform:
+'409001609':
+ :text: 1940 G 2311
+ :tag: 541$e
+ :transform:
+'410001221':
+ :text: 1943 G 2295
+ :tag: 541$e
+ :transform:
+'410001222':
+ :text: 1943 G 2296-2335
+ :tag: 541$e
+ :transform:
+'410001280':
+ :text: 1943 G 2336
+ :tag: 541$e
+ :transform:
+'410001279':
+ :text: 1943 G 2337
+ :tag: 541$e
+ :transform:
+'410001278':
+ :text: 1943 G 2338
+ :tag: 541$e
+ :transform:
+'410001277':
+ :text: 1943 G 2339
+ :tag: 541$e
+ :transform:
+'410001276':
+ :text: 1943 G 2340
+ :tag: 541$e
+ :transform:
+'410001303':
+ :text: 1943 G 2341
+ :tag: 541$e
+ :transform:
+'410001213':
+ :text: 1943 G 2342
+ :tag: 541$e
+ :transform:
+'410001214':
+ :text: 1943 G 2343
+ :tag: 541$e
+ :transform:
+'410001215':
+ :text: 1943 G 2343
+ :tag: 541$e
+ :transform:
+'410001368':
+ :text: 1943 G 2344
+ :tag: 541$e
+ :transform:
+'410001369':
+ :text: 1943 G 2344
+ :tag: 541$e
+ :transform:
+'410001377':
+ :text: 1943 G 2345
+ :tag: 541$e
+ :transform:
+'410001378':
+ :text: 1943 G 2345
+ :tag: 541$e
+ :transform:
+'410001241':
+ :text: 1943 G 2347
+ :tag: 541$e
+ :transform:
+'410001243':
+ :text: 1943 G 2348
+ :tag: 541$e
+ :transform:
+'410001321':
+ :text: 1943 G 2349
+ :tag: 541$e
+ :transform:
+'410001322':
+ :text: 1943 G 2349
+ :tag: 541$e
+ :transform:
+'410001323':
+ :text: 1943 G 2349
+ :tag: 541$e
+ :transform:
+'410001324':
+ :text: 1943 G 2349
+ :tag: 541$e
+ :transform:
+'410001325':
+ :text: 1943 G 2349
+ :tag: 541$e
+ :transform:
+'410001326':
+ :text: 1943 G 2349
+ :tag: 541$e
+ :transform:
+'410001327':
+ :text: 1943 G 2349
+ :tag: 541$e
+ :transform:
+'410001375':
+ :text: 1943 G 2350
+ :tag: 541$e
+ :transform:
+'410001359':
+ :text: 1943 G 2352
+ :tag: 541$e
+ :transform:
+'410001247':
+ :text: 1943 G 2353
+ :tag: 541$e
+ :transform:
+'410001267':
+ :text: 1943 G 2353
+ :tag: 541$e
+ :transform:
+'410001293':
+ :text: 1943 G 2353
+ :tag: 541$e
+ :transform:
+'410001296':
+ :text: 1943 G 2353
+ :tag: 541$e
+ :transform:
+'410001302':
+ :text: 1943 G 2353
+ :tag: 541$e
+ :transform:
+'410001249':
+ :text: 1943 G 2354
+ :tag: 541$e
+ :transform:
+'410001300':
+ :text: 1943 G 2355
+ :tag: 541$e
+ :transform:
+'410001301':
+ :text: 1943 G 2355
+ :tag: 541$e
+ :transform:
+'410001356':
+ :text: 1943 G 2356
+ :tag: 541$e
+ :transform:
+'410001345':
+ :text: 1943 G 2357
+ :tag: 541$e
+ :transform:
+'410001348':
+ :text: 1943 G 2357
+ :tag: 541$e
+ :transform:
+'410001223':
+ :text: 1943 G 2358
+ :tag: 541$e
+ :transform:
+'410001224':
+ :text: 1943 G 2358
+ :tag: 541$e
+ :transform:
+'410001304':
+ :text: 1943 G 2359
+ :tag: 541$e
+ :transform:
+'410001305':
+ :text: 1943 G 2359
+ :tag: 541$e
+ :transform:
+'410001350':
+ :text: 1943 G 2360
+ :tag: 541$e
+ :transform:
+'410001351':
+ :text: 1943 G 2360
+ :tag: 541$e
+ :transform:
+'410001352':
+ :text: 1943 G 2360
+ :tag: 541$e
+ :transform:
+'410001682':
+ :text: 1943 G 2361
+ :tag: 541$e
+ :transform:
+'410001319':
+ :text: 1943 G 2362
+ :tag: 541$e
+ :transform:
+'410001371':
+ :text: 1943 G 2363
+ :tag: 541$e
+ :transform:
+'410001372':
+ :text: 1943 G 2363
+ :tag: 541$e
+ :transform:
+'410001373':
+ :text: 1943 G 2363
+ :tag: 541$e
+ :transform:
+'410001374':
+ :text: 1943 G 2363
+ :tag: 541$e
+ :transform:
+'410001226':
+ :text: 1943 G 2364
+ :tag: 541$e
+ :transform:
+'410001227':
+ :text: 1943 G 2364
+ :tag: 541$e
+ :transform:
+'410001229':
+ :text: 1943 G 2364
+ :tag: 541$e
+ :transform:
+'410001230':
+ :text: 1943 G 2364
+ :tag: 541$e
+ :transform:
+'410001231':
+ :text: 1943 G 2365
+ :tag: 541$e
+ :transform:
+'410001233':
+ :text: 1943 G 2365
+ :tag: 541$e
+ :transform:
+'410001235':
+ :text: 1943 G 2365
+ :tag: 541$e
+ :transform:
+'410001236':
+ :text: 1943 G 2365
+ :tag: 541$e
+ :transform:
+'410001354':
+ :text: 1943 G 2367
+ :tag: 541$e
+ :transform:
+'410001331':
+ :text: 1943 G 2368
+ :tag: 541$e
+ :transform:
+'410001336':
+ :text: 1943 G 2369
+ :tag: 541$e
+ :transform:
+'410001342':
+ :text: 1943 G 2369
+ :tag: 541$e
+ :transform:
+'410001361':
+ :text: 1943 G 2370
+ :tag: 541$e
+ :transform:
+'410001363':
+ :text: 1943 G 2370
+ :tag: 541$e
+ :transform:
+'410001310':
+ :text: 1943 G 2372
+ :tag: 541$e
+ :transform:
+'410001311':
+ :text: 1943 G 2372
+ :tag: 541$e
+ :transform:
+'410001309':
+ :text: 1943 G 2373
+ :tag: 541$e
+ :transform:
+'410001315':
+ :text: 1943 G 2374
+ :tag: 541$e
+ :transform:
+'410001316':
+ :text: 1943 G 2374
+ :tag: 541$e
+ :transform:
+'410001237':
+ :text: 1943 G 2375
+ :tag: 541$e
+ :transform:
+'410001307':
+ :text: 1943 G 2376
+ :tag: 541$e
+ :transform:
+'410001681':
+ :text: 1943 G 2377
+ :tag: 541$e
+ :transform:
+'410001379':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001380':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001382':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001383':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001384':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001387':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001388':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001389':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001390':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001391':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001392':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001393':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001394':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001502':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001503':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001504':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001505':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001506':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001507':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001508':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001509':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001510':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001511':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001512':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001513':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001514':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001515':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001516':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001517':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001518':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001519':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001520':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001521':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001525':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001530':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001534':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001537':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001542':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001557':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001558':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001559':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001561':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001562':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001563':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001564':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001565':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001566':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001567':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001568':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001569':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001570':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001571':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001572':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001573':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001574':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001575':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001576':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001583':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001584':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001585':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001586':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001587':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001588':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001589':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001590':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001591':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001592':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001593':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001594':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001595':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001596':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001597':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001598':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001599':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001600':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001601':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001602':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001603':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001604':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001605':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001606':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001607':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001608':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001609':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001610':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001611':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001612':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001613':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001614':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001615':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001616':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001617':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001618':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001619':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001620':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001621':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001622':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001623':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001624':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001625':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001626':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001627':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001628':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001629':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001630':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001631':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001632':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001633':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001634':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001649':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001650':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001651':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001655':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001656':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001657':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001658':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001660':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001661':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001662':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001663':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001664':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001665':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001666':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001667':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001668':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001669':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001670':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001671':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001672':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001673':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001674':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001675':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001676':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001677':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001678':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001679':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001680':
+ :text: 1943 G 2381
+ :tag: 541$e
+ :transform:
+'410001313':
+ :text: 1943 G 2382
+ :tag: 541$e
+ :transform:
+'410001314':
+ :text: 1943 G 2382
+ :tag: 541$e
+ :transform:
+'410001370':
+ :text: 1943 G 2383
+ :tag: 541$e
+ :transform:
+'406000033':
+ :text: 1945 K 1126
+ :tag: 541$e
+ :transform:
+'409001680':
+ :text: 1947 G 1203
+ :tag: 541$e
+ :transform:
+'409001430':
+ :text: 1948 G 4106
+ :tag: 541$e
+ :transform:
+'406000032':
+ :text: 1948 G 4108
+ :tag: 541$e
+ :transform:
+'402009675':
+ :text: 1948 K 1481
+ :tag: 541$e
+ :transform:
+'400102415':
+ :text: 1953 G 2105
+ :tag: 541$e
+ :transform:
+'400102416':
+ :text: 1953 G 2105
+ :tag: 541$e
+ :transform:
+'400102417':
+ :text: 1953 G 2105
+ :tag: 541$e
+ :transform:
+'400102418':
+ :text: 1953 G 2105
+ :tag: 541$e
+ :transform:
+'400102419':
+ :text: 1953 G 2105
+ :tag: 541$e
+ :transform:
+'400102420':
+ :text: 1953 G 2105
+ :tag: 541$e
+ :transform:
+'400102421':
+ :text: 1953 G 2105
+ :tag: 541$e
+ :transform:
+'400102422':
+ :text: 1953 G 2105
+ :tag: 541$e
+ :transform:
+'400102423':
+ :text: 1953 G 2106
+ :tag: 541$e
+ :transform:
+'409001974':
+ :text: 1953 K 114
+ :tag: 541$e
+ :transform:
+'407001346':
+ :text: 1954 G 8382
+ :tag: 541$e
+ :transform:
+'402009533':
+ :text: 1954 G 8383
+ :tag: 541$e
+ :transform:
+'402009534':
+ :text: 1954 G 8383
+ :tag: 541$e
+ :transform:
+'409001683':
+ :text: 1954 G 8384
+ :tag: 541$e
+ :transform:
+'409001682':
+ :text: 1954 G 8385
+ :tag: 541$e
+ :transform:
+'409001681':
+ :text: 1954 G 8386
+ :tag: 541$e
+ :transform:
+'409001684':
+ :text: 1954 G 8387
+ :tag: 541$e
+ :transform:
+'402009532':
+ :text: 1954 G 8674
+ :tag: 541$e
+ :transform:
+'409001701':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001785':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001955':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001695':
+ :text: 1955 G 2439
+ :tag: 541$e
+ :transform:
+'402009669':
+ :text: 1955 G 5043
+ :tag: 541$e
+ :transform:
+'402009670':
+ :text: 1955 G 5043
+ :tag: 541$e
+ :transform:
+'402009672':
+ :text: 1955 G 5043
+ :tag: 541$e
+ :transform:
+'409001426':
+ :text: 1955 G 5043
+ :tag: 541$e
+ :transform:
+'409001696':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001697':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001698':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001699':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001700':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001702':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001703':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001704':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001705':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001706':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001707':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001708':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001709':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001710':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001711':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001712':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001713':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001714':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001715':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001716':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001717':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001718':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001719':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001720':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001721':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001722':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001723':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001724':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001725':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001726':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001727':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001728':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001729':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001730':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001731':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001732':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001733':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001734':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001735':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001736':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001737':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001738':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001739':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001740':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001741':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001742':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001743':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001744':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001745':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001746':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001747':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001748':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001749':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001750':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001751':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001752':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001753':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001754':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001755':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001756':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001757':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001758':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001759':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001760':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001761':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001762':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001763':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001764':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001765':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001766':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001767':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001768':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001769':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001770':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001771':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001772':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001773':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001774':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001775':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001776':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001777':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001778':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001779':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001780':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001781':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001782':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001783':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001784':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001786':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001787':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001788':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001789':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001790':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001791':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001792':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001793':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001794':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001795':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001796':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001797':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001798':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001799':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001800':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001801':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001802':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001803':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001804':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001805':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001806':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001807':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001808':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001809':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001810':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001811':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001812':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001813':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001814':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001815':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001816':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001817':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001818':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001819':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001820':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001821':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001822':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001823':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001824':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001825':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001826':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001827':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001828':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001829':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001830':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001831':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001832':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001833':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001834':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001835':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001836':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001837':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001838':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001839':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001840':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001841':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001842':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001843':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001844':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001845':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001846':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001847':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001848':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001849':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001850':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001851':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001852':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001853':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001854':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001855':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001856':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001857':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001858':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001859':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001860':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001861':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001862':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001863':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001864':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001865':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001866':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001867':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001868':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001869':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001870':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001871':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001872':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001873':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001874':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001875':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001876':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001877':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001878':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001879':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001880':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001881':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001882':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001883':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001884':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001885':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001886':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001887':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001888':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001889':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001890':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001891':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001892':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001893':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001894':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001895':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001896':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001897':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001898':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001899':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001900':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001901':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001902':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001903':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001904':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001905':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001906':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001907':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001908':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001909':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001910':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001911':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001912':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001913':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001914':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001915':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001916':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001917':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001918':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001919':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001920':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001921':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001922':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001923':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001924':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001925':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001926':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001927':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001928':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001929':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001930':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001931':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001932':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001933':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001934':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001935':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001936':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001937':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001938':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001939':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001940':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001941':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001942':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001943':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001944':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001945':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001946':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001947':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001948':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001949':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001950':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001951':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001952':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001953':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001954':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001956':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001957':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409001958':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002190':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002191':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002192':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002193':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002194':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002195':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002196':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002197':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002198':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002199':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002200':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002201':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002202':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002203':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002204':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002205':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002206':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002207':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002208':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002209':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002210':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002211':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002212':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002213':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002214':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002215':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002216':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002217':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002218':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002219':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002220':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002221':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002222':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002223':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002224':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002225':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002226':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002227':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002228':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002229':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002230':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002231':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002232':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002233':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002234':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002235':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002236':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002237':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002238':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002239':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002240':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002241':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002242':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002243':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002244':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002245':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002246':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002247':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002248':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002249':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002250':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002251':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002252':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002253':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002254':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002255':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002256':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002257':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002258':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002259':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002260':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002261':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002262':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002263':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002264':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002265':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002266':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002267':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002268':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002269':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002270':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002271':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002272':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002273':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002274':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002275':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002276':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002277':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002278':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002279':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002280':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002281':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002282':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002283':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002284':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002285':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002286':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002287':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002288':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002289':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002290':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002291':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002292':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002293':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002294':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002295':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002296':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002297':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002298':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002299':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002300':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002301':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002302':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002303':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002304':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002305':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002306':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002307':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002308':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002309':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002310':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002311':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002312':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002313':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002314':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002315':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002316':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002317':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002318':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002319':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002320':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002321':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002322':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002323':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002324':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002325':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002326':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002327':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002328':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002329':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002330':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002331':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002332':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002333':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002334':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002335':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002336':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002337':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002338':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002339':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002340':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002341':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002342':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002343':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002344':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002345':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002346':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002347':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002348':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002349':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002350':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002351':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002352':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002353':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002354':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002355':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002356':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002357':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002358':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002359':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002360':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002361':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002362':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'409002363':
+ :text: 1955 G 6030
+ :tag: 541$e
+ :transform:
+'402009538':
+ :text: 1955 G 6031
+ :tag: 541$e
+ :transform:
+'402009539':
+ :text: 1955 G 6031
+ :tag: 541$e
+ :transform:
+'402009540':
+ :text: 1955 G 6031
+ :tag: 541$e
+ :transform:
+'402009541':
+ :text: 1955 G 6031
+ :tag: 541$e
+ :transform:
+'402009542':
+ :text: 1955 G 6031
+ :tag: 541$e
+ :transform:
+'402009544':
+ :text: 1955 G 6031
+ :tag: 541$e
+ :transform:
+'402009545':
+ :text: 1955 G 6031
+ :tag: 541$e
+ :transform:
+'402009954':
+ :text: 1955 G 6997
+ :tag: 541$e
+ :transform:
+'402009537':
+ :text: 1955 G 7414
+ :tag: 541$e
+ :transform:
+'402009535':
+ :text: 1957 G 5544
+ :tag: 541$e
+ :transform:
+'409001959':
+ :text: 1957 G 5544
+ :tag: 541$e
+ :transform:
+'409002982':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002983':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002984':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002985':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002986':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002987':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002988':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002989':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002990':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002991':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002992':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002993':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002994':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002995':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002996':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002997':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002998':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409002999':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003000':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003001':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003002':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003003':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003004':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003005':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003006':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003007':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003008':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003009':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003010':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003011':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003012':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003013':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003014':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003015':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003016':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003017':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003018':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003019':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003020':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003021':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003022':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003023':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003024':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003025':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003026':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003027':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003028':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003029':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003030':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003031':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003032':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003033':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003034':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003035':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003036':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003037':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003038':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003039':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003040':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003041':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003042':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003043':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003044':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003045':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003046':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003047':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003048':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003049':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003050':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003051':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003052':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003053':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003054':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003055':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003056':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003057':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003058':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003059':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003060':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003061':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003062':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003063':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003064':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003065':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003066':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003067':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003068':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003069':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003070':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003071':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003072':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003073':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003074':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003075':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003076':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003077':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003078':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409003079':
+ :text: 1957 K 2979
+ :tag: 541$e
+ :transform:
+'409001541':
+ :text: 1957 K 2999
+ :tag: 541$e
+ :transform:
+'409001542':
+ :text: 1957 K 2999
+ :tag: 541$e
+ :transform:
+'409001543':
+ :text: 1957 K 2999
+ :tag: 541$e
+ :transform:
+'409001544':
+ :text: 1957 K 2999
+ :tag: 541$e
+ :transform:
+'409001685':
+ :text: 1957 K 2999
+ :tag: 541$e
+ :transform:
+'409001686':
+ :text: 1957 K 2999
+ :tag: 541$e
+ :transform:
+'409001687':
+ :text: 1957 K 2999
+ :tag: 541$e
+ :transform:
+'409001688':
+ :text: 1957 K 2999
+ :tag: 541$e
+ :transform:
+'409001689':
+ :text: 1957 K 2999
+ :tag: 541$e
+ :transform:
+'409001690':
+ :text: 1957 K 2999
+ :tag: 541$e
+ :transform:
+'409001691':
+ :text: 1957 K 2999
+ :tag: 541$e
+ :transform:
+'400150400':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'400150401':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'400150402':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'400150403':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'400150404':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'400150405':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'400150406':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'400150407':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'400150409':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'405000000':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002365':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002368':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002371':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002372':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002373':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002374':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002375':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002377':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002378':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002379':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002381':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002383':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002384':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002386':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002387':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002388':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002389':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002391':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002392':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002393':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002394':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002395':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002396':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002397':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002398':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002399':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002400':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002401':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002402':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002403':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002404':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002405':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002406':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002407':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002408':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002409':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002410':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002411':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002412':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002413':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002414':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002415':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002416':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002417':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002418':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002419':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002420':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002421':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002422':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002423':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002425':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002426':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002427':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002428':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002429':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002430':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002431':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002432':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002433':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002434':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002436':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002437':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002440':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002441':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002442':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002443':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002444':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002445':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002447':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409002449':
+ :text: 1958 G 6691
+ :tag: 541$e
+ :transform:
+'409003105':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003106':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003107':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003108':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003109':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003110':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003111':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003112':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003113':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003114':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003115':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003116':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003117':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003118':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003119':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003120':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003121':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003122':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003123':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003124':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003125':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003126':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003127':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003128':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003129':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003130':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003131':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003132':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003133':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003134':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003135':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003136':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003137':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003138':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003139':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003140':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003141':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003142':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003143':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003144':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003145':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003146':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003147':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003148':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003149':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003150':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003151':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003152':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003153':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003154':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003155':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003156':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003157':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003158':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003159':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003160':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003161':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003162':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003163':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003164':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003165':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003166':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003167':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003168':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003169':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003170':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003171':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003172':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003173':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003174':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003175':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003176':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003177':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003178':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003179':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003180':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003181':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003182':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003183':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003184':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003185':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003186':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003187':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003188':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003189':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003190':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003191':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003192':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003193':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003194':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003195':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003196':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003197':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003198':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003199':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003200':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003201':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003202':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003203':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003204':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003205':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003206':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003207':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003208':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003209':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003210':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003211':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003212':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003213':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003214':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003215':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003216':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003217':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003218':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003219':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003220':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003221':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003222':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003223':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003224':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003225':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003226':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003227':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003228':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003229':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003230':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003231':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003232':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003233':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003234':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003235':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003236':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003237':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003238':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003239':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003240':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003241':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003242':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003243':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003244':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003245':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003246':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003247':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003248':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003249':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003250':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003251':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003252':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003253':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003254':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003255':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003256':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003257':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003258':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003259':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003260':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003261':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003262':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003263':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003264':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003265':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003266':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003267':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003268':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003269':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003270':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003271':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003272':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003273':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003274':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003275':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003276':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003277':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003278':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003279':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003280':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003281':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003282':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003283':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003284':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003285':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003286':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003287':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003288':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003289':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003290':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003291':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003292':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003293':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003294':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003295':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003296':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003297':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003298':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003299':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003300':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003301':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003302':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003303':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003304':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003305':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003306':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003307':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003308':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003309':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003310':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003311':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003312':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003313':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003314':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003315':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003316':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003317':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003318':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003319':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003320':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003321':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003322':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003323':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003324':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003325':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003326':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003327':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003328':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003329':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003330':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003331':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003332':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003333':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003334':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003335':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003336':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003337':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003338':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003339':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003340':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003341':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003342':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003343':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003344':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003345':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003346':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003347':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003348':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003349':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003350':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003351':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003352':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003353':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003354':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003355':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003356':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003357':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003358':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003359':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003360':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003361':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003362':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003363':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003364':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003365':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003366':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003367':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003368':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003369':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003370':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003371':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003372':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003373':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003374':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003375':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003376':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003377':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003378':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003379':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003380':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003381':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003382':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003383':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003384':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003385':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003386':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003387':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003388':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003389':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003390':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003391':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003392':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003393':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003394':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003395':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003396':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'409003397':
+ :text: 1959 G 2957
+ :tag: 541$e
+ :transform:
+'400150408':
+ :text: 1959 G 3915
+ :tag: 541$e
+ :transform:
+'409002382':
+ :text: 1959 G 3915
+ :tag: 541$e
+ :transform:
+'409002385':
+ :text: 1959 G 3915
+ :tag: 541$e
+ :transform:
+'409002446':
+ :text: 1959 G 3915
+ :tag: 541$e
+ :transform:
+'409002448':
+ :text: 1959 G 3915
+ :tag: 541$e
+ :transform:
+'409002450':
+ :text: 1959 G 3915
+ :tag: 541$e
+ :transform:
+'409001692':
+ :text: 1960 G 1626
+ :tag: 541$e
+ :transform:
+'409001693':
+ :text: 1960 G 1626
+ :tag: 541$e
+ :transform:
+'409002479':
+ :text: Fassbaender 34 [a]
+ :tag: 852$d
+ :transform:
+'409002480':
+ :text: Fassbaender 34 [b]
+ :tag: 852$d
+ :transform:
+'409002481':
+ :text: Fassbaender 97 a/1
+ :tag: 852$d
+ :transform:
+'409002482':
+ :text: Fassbaender 97 b
+ :tag: 852$d
+ :transform:
+'409002483':
+ :text: Fassbaender 97 a/2
+ :tag: 852$d
+ :transform:
+'409002484':
+ :text: Fassbaender 97 a/3
+ :tag: 852$d
+ :transform:
+'409001961':
+ :text: 1961 G 2344
+ :tag: 541$e
+ :transform:
+'409001962':
+ :text: 1961 G 2344
+ :tag: 541$e
+ :transform:
+'409001963':
+ :text: 1961 G 2806
+ :tag: 541$e
+ :transform:
+'409001410':
+ :text: 1961 G 2882
+ :tag: 541$e
+ :transform:
+'409001409':
+ :text: 1961 G 3004
+ :tag: 541$e
+ :transform:
+'406000035':
+ :text: 1961 G 3055
+ :tag: 541$e
+ :transform:
+'406000036':
+ :text: 1961 G 3055
+ :tag: 541$e
+ :transform:
+'406000037':
+ :text: 1961 G 3055
+ :tag: 541$e
+ :transform:
+'406000038':
+ :text: 1961 G 3055
+ :tag: 541$e
+ :transform:
+'406000039':
+ :text: 1961 G 3055
+ :tag: 541$e
+ :transform:
+'406000040':
+ :text: 1961 G 3055
+ :tag: 541$e
+ :transform:
+'409001964':
+ :text: 1961 G 6090
+ :tag: 541$e
+ :transform:
+'406000041':
+ :text: 1961 G 6673
+ :tag: 541$e
+ :transform:
+'409000606':
+ :text: 1962 G
+ :tag: 541$e
+ :transform:
+'409001415':
+ :text: 1962 G 3108
+ :tag: 541$e
+ :transform:
+'409001416':
+ :text: 1962 G 3108
+ :tag: 541$e
+ :transform:
+'409001417':
+ :text: 1962 G 3108
+ :tag: 541$e
+ :transform:
+'409001967':
+ :text: 1962 G 3205
+ :tag: 541$e
+ :transform:
+'409001968':
+ :text: 1962 G 3205
+ :tag: 541$e
+ :transform:
+'409001969':
+ :text: 1962 G 3205
+ :tag: 541$e
+ :transform:
+'409001970':
+ :text: 1962 G 3205
+ :tag: 541$e
+ :transform:
+'409001971':
+ :text: 1962 G 3205
+ :tag: 541$e
+ :transform:
+'409001972':
+ :text: 1962 G 3205
+ :tag: 541$e
+ :transform:
+'409001973':
+ :text: 1962 G 3205
+ :tag: 541$e
+ :transform:
+'409000514':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000515':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000517':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000519':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000529':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000532':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000536':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000540':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000545':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000553':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000556':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000557':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000560':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000561':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000569':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000570':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000571':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000575':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000584':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000585':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000586':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000587':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000588':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000602':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000603':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000604':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000607':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000608':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000609':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000611':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000612':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000613':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000614':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000615':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000616':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000617':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000618':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000619':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000620':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000621':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000622':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000623':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000624':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000625':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000626':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000627':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000628':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000629':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000630':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000631':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000632':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000633':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000634':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000635':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000636':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000637':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000638':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000639':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000640':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000641':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000642':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000654':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000655':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000656':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000657':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000658':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000659':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000660':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000661':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000662':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000663':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000664':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000665':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000666':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000667':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000668':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000669':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000670':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000671':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000672':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000682':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000686':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000687':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000688':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000690':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000691':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000692':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000693':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000694':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000695':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000696':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000697':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000700':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000705':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000707':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000708':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000709':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000717':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000718':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000721':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000722':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000724':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000725':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000731':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000737':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000740':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000745':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000748':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000771':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000772':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000773':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000774':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000775':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000776':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000777':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000778':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000779':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000785':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000786':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000787':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000788':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000789':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000790':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000791':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000792':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000793':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000804':
+ :text: 90 G 932
+ :tag: 541$e
+ :transform: 1990 G 932
+'409000805':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000806':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000807':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000808':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000809':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000810':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000834':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000835':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000836':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000837':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000838':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000839':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000840':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000853':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000859':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000860':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000861':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000862':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000863':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000864':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000865':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000866':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000867':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000868':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000869':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000870':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000871':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000872':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000873':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000874':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000875':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000876':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000877':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000878':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000879':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000880':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000881':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000882':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000883':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000884':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000885':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000886':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000887':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000888':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000889':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000890':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000891':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000892':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000893':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000894':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000895':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000896':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000897':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000898':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000899':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000900':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000901':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000902':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000903':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000904':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000905':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000906':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000907':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000908':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000909':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000910':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000911':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000912':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000913':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000914':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000915':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000916':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000920':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000921':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000922':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000923':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000924':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000925':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000926':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000927':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000928':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000929':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000930':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000931':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000932':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000933':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000934':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000935':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000936':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000937':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000938':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000939':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000940':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000941':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000942':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000943':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000944':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000945':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000946':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000947':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000948':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000949':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000950':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000951':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000952':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000953':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000954':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000955':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000956':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000957':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000958':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000959':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000960':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000961':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000962':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000963':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000964':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000965':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000966':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000967':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000968':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000969':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000970':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000971':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000972':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000973':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000974':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000975':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000976':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000977':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000978':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000979':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000980':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000981':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000982':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000983':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000984':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000985':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000986':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000987':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000988':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000989':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000990':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000991':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000992':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000993':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000994':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000995':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000996':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000997':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000998':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409000999':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001000':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001001':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001002':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001003':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001004':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001005':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001006':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001007':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001008':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001009':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001010':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001011':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001012':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001013':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001014':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001015':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001016':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001017':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001018':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001019':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001020':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001021':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001022':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001023':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001024':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001025':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001026':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001027':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001028':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001029':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001030':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001031':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001032':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001033':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001034':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001035':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001036':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001037':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001038':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001039':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001040':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001041':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001042':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001043':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001044':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001045':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001046':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001047':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001048':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001049':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001050':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001051':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001052':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001053':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001054':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001055':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001056':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001057':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001058':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001059':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001060':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001061':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001062':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001063':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001064':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001065':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001066':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001067':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001068':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001069':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001070':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001071':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001072':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001073':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001074':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001075':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001076':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001077':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001078':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001079':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001080':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001081':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001082':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001083':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001084':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001085':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001086':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001087':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001088':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001089':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001090':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001091':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001092':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001093':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001094':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001095':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001096':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001097':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001098':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001099':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001100':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001101':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001102':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001103':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001104':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001105':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001106':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001107':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001108':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001109':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001110':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001111':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001112':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001113':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001114':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001115':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001116':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001117':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001118':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001119':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001120':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001121':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001122':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001123':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001124':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001125':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001126':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001127':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001128':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001129':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001130':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001131':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001132':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001133':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001134':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001135':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001136':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001137':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001138':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001139':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001140':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001141':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001144':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001145':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001146':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001147':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001148':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001149':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001150':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001151':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001152':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001153':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001154':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001155':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001156':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001157':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001158':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001159':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001160':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001161':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001162':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001163':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001164':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001165':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001166':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001167':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001168':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001169':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001170':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001171':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001172':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001173':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001174':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001175':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001176':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001177':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001178':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001179':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001180':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001181':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001182':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001183':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001184':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001185':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001186':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001187':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001188':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001189':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001190':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001191':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001192':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001193':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001194':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001195':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001196':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001197':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001198':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001199':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001200':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001201':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001202':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001203':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001204':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001205':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001227':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001228':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001229':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001230':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001231':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001232':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001233':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001234':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'409001235':
+ :text: 1962 G 6569
+ :tag: 541$e
+ :transform:
+'402009536':
+ :text: 1962 K 492
+ :tag: 541$e
+ :transform:
+'409001960':
+ :text: 1962 K 492
+ :tag: 541$e
+ :transform:
+'400150000':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150001':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150002':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150003':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150004':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150005':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150006':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150007':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150008':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150009':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150010':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150011':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150012':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150013':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150014':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150015':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150016':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150017':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150018':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150019':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150020':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150021':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150022':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150023':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150024':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150025':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150026':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150027':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150028':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150029':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150030':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150031':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150032':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150033':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150034':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150035':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150036':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150037':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150038':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150039':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150040':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150041':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150042':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150043':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150044':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150045':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150046':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150047':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150048':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150049':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150050':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150051':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150052':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150053':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150054':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150055':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150056':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150057':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150058':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150059':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150060':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150061':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150062':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150063':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150064':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150065':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150066':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150067':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150068':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150069':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150070':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150071':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150072':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150073':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150074':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150075':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150076':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150077':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150078':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150079':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150080':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150081':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150082':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150084':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150085':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150086':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150087':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150088':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150089':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150090':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150091':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150092':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150093':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150094':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150095':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150096':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150097':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150098':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150099':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150100':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150101':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150102':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150103':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150104':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150105':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150106':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150107':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150108':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150109':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150110':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150111':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150112':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150113':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150114':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150115':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150116':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150117':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150118':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150119':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150120':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150121':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150123':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150124':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150125':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150126':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150127':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150128':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150129':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150130':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150131':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150132':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150133':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150134':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150135':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150136':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150137':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150138':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150139':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150140':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150141':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150142':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150143':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150144':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150145':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150146':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150147':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150148':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150149':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150150':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150151':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150152':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150153':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150154':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150155':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150156':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150157':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150158':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150159':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150160':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150161':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150162':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150163':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150164':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150165':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150166':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150167':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150168':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150169':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150170':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150171':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150172':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150173':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150174':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150175':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150176':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150177':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150178':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150179':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150180':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150181':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150182':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150183':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150184':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150185':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150186':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150187':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150188':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150189':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150190':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150191':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150192':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150193':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150194':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150195':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150196':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150197':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150198':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150199':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150200':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150201':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150202':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150203':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150204':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150205':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150206':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150207':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150208':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150209':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150210':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150211':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150212':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150213':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150214':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150215':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150216':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150217':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150218':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150219':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150220':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150221':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150222':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150223':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150224':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150225':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150226':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150227':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150228':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150229':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150230':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150231':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150232':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150233':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150234':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150235':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150236':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150237':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150238':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150239':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150240':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150241':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150242':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150243':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150244':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150245':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150246':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'400150247':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'409001237':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'409001238':
+ :text: 1963 G 3865
+ :tag: 541$e
+ :transform:
+'402009989':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'402009990':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'402010064':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'402010082':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'402010084':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'410002647':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'410002648':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'410002649':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'410002650':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'410002653':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'410002988':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'410002989':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'410002990':
+ :text: 1963 G 418
+ :tag: 541$e
+ :transform:
+'409001966':
+ :text: 1966 G 1292
+ :tag: 541$e
+ :transform:
+'409001975':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001976':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001977':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001978':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001979':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001980':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001981':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001982':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001983':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001984':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001985':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001986':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001987':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001988':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001989':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001990':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001991':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001992':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001993':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001994':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001995':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001996':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001997':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001998':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001999':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002000':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002001':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002002':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002003':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002004':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002005':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002006':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002007':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002008':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002009':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002010':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002011':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002012':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002013':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409002014':
+ :text: 1969 G 3537
+ :tag: 541$e
+ :transform:
+'409001418':
+ :text: 1969 K 562
+ :tag: 541$e
+ :transform:
+'409000000':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000014':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000015':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000016':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000017':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000018':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000019':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000020':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000021':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000022':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000023':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000024':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000025':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000026':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000027':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000028':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000029':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000030':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000031':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000032':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000033':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000034':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000035':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000036':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000037':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000038':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000039':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000040':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000041':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000042':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000043':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000044':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000045':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000046':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000047':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000048':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000049':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000050':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000051':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000052':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000053':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000054':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000055':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000056':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000057':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000058':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000059':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000060':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000061':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000062':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000063':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000064':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000065':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000066':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000067':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000068':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000069':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000070':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000071':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000072':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000073':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000074':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000075':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000076':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000077':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000078':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000079':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000080':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000081':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000082':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000083':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000084':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000085':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000086':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000087':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000088':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000089':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000090':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000091':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000092':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000093':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000094':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000095':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000096':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000097':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000098':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000099':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000100':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000101':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000102':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000103':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000104':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000105':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000106':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000107':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000108':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000109':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000110':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000111':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000112':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000113':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000114':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000115':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000116':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000117':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000118':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000119':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000120':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000121':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000122':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000123':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000124':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000125':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000126':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000127':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000128':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000129':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000130':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000131':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000132':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000133':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000134':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000135':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000136':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000137':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000138':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000139':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000140':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000141':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000142':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000143':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000144':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000145':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000146':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000147':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000148':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000149':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000150':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000151':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000152':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000153':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000154':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000155':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000156':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000157':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000158':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000159':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000160':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000161':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000162':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000163':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000164':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000165':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000166':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000167':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000168':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000169':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000170':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000171':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000172':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000173':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000174':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000175':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000176':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000177':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000178':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000179':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000180':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000181':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000182':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000183':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000184':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000185':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000186':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000187':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000188':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000189':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000190':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000191':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000192':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000193':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000194':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000195':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000196':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000197':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000198':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000199':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000200':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409000201':
+ :text: 1970 G 453
+ :tag: 541$e
+ :transform:
+'409002522':
+ :text: 1972 G 5098
+ :tag: 541$e
+ :transform:
+'409001423':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001424':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001425':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001432':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001433':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001434':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001435':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001436':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001437':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001438':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001439':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001440':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001441':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001442':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001443':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001444':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001445':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001446':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001447':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001448':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001449':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001450':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001451':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001452':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001453':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001454':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001455':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001456':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001457':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001458':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001459':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001460':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001461':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001462':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001463':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001464':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001465':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001466':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001467':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001468':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001469':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001470':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001471':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001472':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001473':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001474':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001475':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001476':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001477':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001478':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001479':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001480':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001481':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001482':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001483':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001484':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001485':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001486':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001487':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001488':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001489':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001490':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001491':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001492':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001493':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001494':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001495':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001496':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001497':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001498':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001499':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001500':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001501':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001502':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001503':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001504':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001505':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001506':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001507':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001508':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001509':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001510':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001511':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001512':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001513':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001514':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001515':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001516':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001517':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001518':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001519':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001520':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001521':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001522':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001523':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001524':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001525':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001526':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001527':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001528':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001529':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001530':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001531':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001532':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001533':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001534':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001535':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001536':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'409001537':
+ :text: 1973 K 3061
+ :tag: 541$e
+ :transform:
+'400196075':
+ :text: Ms. H.H.IV 182 (78) (Ms.1205)
+ :tag: 852$d
+ :transform:
+'400196077':
+ :text: Ms. H.H.IV 182 (80) (Ms.1207)
+ :tag: 852$d
+ :transform:
+'400196105':
+ :text: Ms. H.H.IV 182 (54) (Ms.1223)
+ :tag: 852$d
+ :transform:
+'400056001':
+ :text: 20c
+ :tag: 852$d
+ :transform:
+'402006566':
+ :text: 22 a
+ :tag: 852$d
+ :transform:
+'402002643':
+ :text: 23 C
+ :tag: 852$d
+ :transform:
+'402002644':
+ :text: 24 C
+ :tag: 852$d
+ :transform:
+'402006648':
+ :text: No 9 M
+ :tag: 852$d
+ :transform:
+'402002641':
+ :text: 25 C
+ :tag: 852$d
+ :transform:
+'402002642':
+ :text: 26 C
+ :tag: 852$d
+ :transform:
+'402006305':
+ :text: No 21 A
+ :tag: 852$d
+ :transform:
+'402002647':
+ :text: 28 C
+ :tag: 852$d
+ :transform:
+'402006341':
+ :text: 28 c
+ :tag: 852$d
+ :transform:
+'400098614':
+ :text: 28./21.
+ :tag: 852$d
+ :transform:
+'402006561':
+ :text: 29 c
+ :tag: 852$d
+ :transform:
+'400102533':
+ :text: 3 [II.a. e.70.]
+ :tag: 852$d
+ :transform:
+'400196073':
+ :text: Ms. H.H.IV 182 (81) (Ms.1203)
+ :tag: 852$d
+ :transform:
+'402002648':
+ :text: 30 C
+ :tag: 852$d
+ :transform:
+'402002907':
+ :text: 31446 [part 2]
+ :tag: 852$d
+ :transform:
+'400055991':
+ :text: 31a
+ :tag: 852$d
+ :transform:
+'400100268':
+ :text: 31a
+ :tag: 852$d
+ :transform:
+'402002646':
+ :text: 32 C
+ :tag: 852$d
+ :transform:
+'400102531':
+ :text: 33 [II.a. e.70.]
+ :tag: 852$d
+ :transform:
+'400102532':
+ :text: 33 [II.a. e.70.]
+ :tag: 852$d
+ :transform:
+'402002645':
+ :text: 33 C
+ :tag: 852$d
+ :transform:
+'402006645':
+ :text: 33a
+ :tag: 852$d
+ :transform:
+'402006290':
+ :text: 34 a
+ :tag: 852$d
+ :transform:
+'400056033':
+ :text: 34a
+ :tag: 852$d
+ :transform:
+'400055985':
+ :text: 35a
+ :tag: 852$d
+ :transform:
+'400055968':
+ :text: 36a
+ :tag: 852$d
+ :transform:
+'400107060':
+ :text: 38a
+ :tag: 852$d
+ :transform:
+'403008285':
+ :text: 3b
+ :tag: 852$d
+ :transform:
+'400196072':
+ :text: Ms. H.H.IV 182 (82) (Ms.1202)
+ :tag: 852$d
+ :transform:
+'409001556':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001557':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001558':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001559':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001560':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001561':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001562':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001563':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001564':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001565':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001566':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001567':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001568':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001569':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'409001570':
+ :text: 40 G 766
+ :tag: 541$e
+ :transform: 1940 G 766
+'400102539':
+ :text: 41 [II.A B.11.]
+ :tag: 852$d
+ :transform:
+'402006289':
+ :text: 41a
+ :tag: 852$d
+ :transform:
+'402006303':
+ :text: No 6 J
+ :tag: 852$d
+ :transform:
+'402006392':
+ :text: 43 a
+ :tag: 852$d
+ :transform:
+'400102497':
+ :text: 44 [e 24.]
+ :tag: 852$d
+ :transform:
+'402006383':
+ :text: 44 a
+ :tag: 852$d
+ :transform:
+'402006302':
+ :text: 45 a
+ :tag: 852$d
+ :transform:
+'409001612':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001613':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001614':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001615':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001616':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001617':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001618':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001619':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001620':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001621':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001622':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001623':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001624':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001625':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001626':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001627':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001628':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001629':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001630':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001631':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001632':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001633':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001634':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001635':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001636':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001637':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001638':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001639':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001640':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001641':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001642':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001643':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001644':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001645':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001646':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001647':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001648':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001649':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001650':
+ :text: 45 G 2623
+ :tag: 541$e
+ :transform: 1945 G 2623
+'409001651':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001652':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001653':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001654':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001655':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001656':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001657':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001658':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001659':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001660':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001661':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001662':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001663':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001664':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001665':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001666':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001667':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001668':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001669':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001670':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001671':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001672':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001673':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001674':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001675':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001676':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001677':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001678':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'409001679':
+ :text: 45 G 2624
+ :tag: 541$e
+ :transform: 1945 G 2624
+'402002649':
+ :text: 46 A
+ :tag: 852$d
+ :transform:
+'402006564':
+ :text: 46 a
+ :tag: 852$d
+ :transform:
+'400107061':
+ :text: 47a
+ :tag: 852$d
+ :transform:
+'400107050':
+ :text: 48a
+ :tag: 852$d
+ :transform:
+'400102499':
+ :text: 49 [199]
+ :tag: 852$d
+ :transform:
+'400107013':
+ :text: 49a
+ :tag: 852$d
+ :transform:
+'400196098':
+ :text: Ms. H.H.IV 182 (85) (Ms.1220)
+ :tag: 852$d
+ :transform:
+'400196099':
+ :text: Ms. H.H.IV 182 (84) (Ms.1215)
+ :tag: 852$d
+ :transform:
+'400107051':
+ :text: 50a
+ :tag: 852$d
+ :transform:
+'400107052':
+ :text: 52a
+ :tag: 852$d
+ :transform:
+'402006134':
+ :text: 53a
+ :tag: 852$d
+ :transform:
+'400102519':
+ :text: 55 [c 195]
+ :tag: 852$d
+ :transform:
+'402006132':
+ :text: 55a
+ :tag: 852$d
+ :transform:
+'400102488':
+ :text: 56 [II. a. e. 68.]
+ :tag: 852$d
+ :transform:
+'400102487':
+ :text: 56 [II. a. e. 69.]
+ :tag: 852$d
+ :transform:
+'402006136':
+ :text: 56a
+ :tag: 852$d
+ :transform:
+'402006500':
+ :text: 56a
+ :tag: 852$d
+ :transform:
+'402006501':
+ :text: 57a
+ :tag: 852$d
+ :transform:
+'400107012':
+ :text: 58a
+ :tag: 852$d
+ :transform:
+'402003255':
+ :text: 6|a
+ :tag: 852$d
+ :transform:
+'402003262':
+ :text: 6|b
+ :tag: 852$d
+ :transform:
+'402006137':
+ :text: 59a
+ :tag: 852$d
+ :transform:
+'402006499':
+ :text: 59a
+ :tag: 852$d
+ :transform:
+'400056036':
+ :text: 6a
+ :tag: 852$d
+ :transform:
+'402010828':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010829':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010830':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010831':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010832':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010833':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010834':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010835':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010836':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010837':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010838':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010839':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010840':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010841':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010842':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010843':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010844':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010845':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010846':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010847':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010848':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010849':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010850':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010851':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010852':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010853':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010854':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010855':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010856':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010857':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010858':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010859':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010860':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010861':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010862':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010863':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010864':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010865':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010866':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010867':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010868':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010869':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010870':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010871':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010872':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'402010873':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'409000209':
+ :text: 72 G 3613
+ :tag: 541$e
+ :transform: 1972 G 3613
+'407001777':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409001694':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002520':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002521':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002525':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002526':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002529':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002530':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002531':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002532':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002533':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002534':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002535':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002536':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002537':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002538':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002539':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002540':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002541':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002543':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002544':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002546':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002547':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002548':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002549':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002550':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002551':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002552':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002553':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002554':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002555':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002556':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002557':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002558':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002560':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002561':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002562':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002563':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002564':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002565':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002566':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002567':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002568':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002569':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002570':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002572':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002573':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002575':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002578':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002579':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002580':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002581':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002582':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002584':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002587':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002588':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002589':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002590':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002591':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002592':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002593':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002594':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002595':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002596':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002597':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002598':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002603':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002604':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002605':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002606':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'409002607':
+ :text: 72 G 5098
+ :tag: 541$e
+ :transform: 1972 G 5098
+'402009519':
+ :text: 72 G 5444
+ :tag: 541$e
+ :transform: 1972 G 5444
+'402009520':
+ :text: 72 G 5444
+ :tag: 541$e
+ :transform: 1972 G 5444
+'402009521':
+ :text: 72 G 5444
+ :tag: 541$e
+ :transform: 1972 G 5444
+'402009522':
+ :text: 72 G 5444
+ :tag: 541$e
+ :transform: 1972 G 5444
+'402009523':
+ :text: 72 G 5444
+ :tag: 541$e
+ :transform: 1972 G 5444
+'402009673':
+ :text: 73 G 645
+ :tag: 541$e
+ :transform: 1973 G 645
+'407001773':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'407001774':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002609':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002610':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002611':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002612':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002613':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002614':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002615':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002616':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002617':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002618':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002619':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002620':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002621':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002622':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002623':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002624':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002625':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002626':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002627':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002628':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002629':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002630':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002631':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002632':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002633':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409002634':
+ :text: 74 G 2321
+ :tag: 541$e
+ :transform: 1974 G 2321
+'409001538':
+ :text: 74 G 4496
+ :tag: 541$e
+ :transform: 1974 G 4496
+'409001539':
+ :text: 74 G 4496
+ :tag: 541$e
+ :transform: 1974 G 4496
+'409001540':
+ :text: 74 G 4496
+ :tag: 541$e
+ :transform: 1974 G 4496
+'402009518':
+ :text: 75 G 1319
+ :tag: 541$e
+ :transform: 1975 G 1319
+'409001412':
+ :text: 75 G 1319
+ :tag: 541$e
+ :transform: 1975 G 1319
+'409002866':
+ :text: 76 G 7509
+ :tag: 541$e
+ :transform: 1976 G 7509
+'409002040':
+ :text: 77 K 779
+ :tag: 541$e
+ :transform: 1977 K 779
+'409002041':
+ :text: 77 K 779
+ :tag: 541$e
+ :transform: 1977 K 779
+'409002042':
+ :text: 77 K 779
+ :tag: 541$e
+ :transform: 1977 K 779
+'409002043':
+ :text: 77 K 779
+ :tag: 541$e
+ :transform: 1977 K 779
+'409002048':
+ :text: 77 K 779
+ :tag: 541$e
+ :transform: 1977 K 779
+'409002049':
+ :text: 77 K 779
+ :tag: 541$e
+ :transform: 1977 K 779
+'402009524':
+ :text: Ms M fol. 14
+ :tag: 852$d
+ :transform:
+'402009525':
+ :text: Ms M fol. 15
+ :tag: 852$d
+ :transform:
+'402009526':
+ :text: Ms M fol. 16
+ :tag: 852$d
+ :transform:
+'402009527':
+ :text: Ms M fol. 17
+ :tag: 852$d
+ :transform:
+'402009528':
+ :text: Ms M fol. 18
+ :tag: 852$d
+ :transform:
+'402009529':
+ :text: Ms M fol. 19
+ :tag: 852$d
+ :transform:
+'402009530':
+ :text: Ms M fol. 20
+ :tag: 852$d
+ :transform:
+'409002942':
+ :text: Ms M fol. 21
+ :tag: 852$d
+ :transform:
+'409002943':
+ :text: Ms M fol. 21
+ :tag: 852$d
+ :transform:
+'409002944':
+ :text: Ms M fol. 21
+ :tag: 852$d
+ :transform:
+'402006111':
+ :text: C 11016
+ :tag: 852$d
+ :transform:
+'402006082':
+ :text: VI B 59 [30]
+ :tag: 852$d
+ :transform:
+'402006083':
+ :text: VI B 59 [29]
+ :tag: 852$d
+ :transform:
+'402006084':
+ :text: VI B 59 [39]
+ :tag: 852$d
+ :transform:
+'402006088':
+ :text: VI B 59 [40]
+ :tag: 852$d
+ :transform:
+'402006062':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006059':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006060':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006061':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402002571':
+ :text: 79 B
+ :tag: 852$d
+ :transform:
+'402002574':
+ :text: 80 B
+ :tag: 852$d
+ :transform:
+'407001778':
+ :text: 80 G 5260
+ :tag: 541$e
+ :transform: 1980 G 5260
+'402003653':
+ :text: 807 (2.)
+ :tag: 852$d
+ :transform:
+'409002068':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002069':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002070':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002071':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002072':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002073':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002074':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002075':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002076':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002077':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002078':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002079':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002080':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002081':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002082':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002083':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002084':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002085':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002086':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002087':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002088':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002089':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002090':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002091':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002092':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002093':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002094':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002095':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002096':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002097':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002098':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002099':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002100':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002101':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002102':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002103':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002104':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002105':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002106':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002107':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002108':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002109':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002110':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002111':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002112':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002113':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002114':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002115':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002116':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002117':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002118':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002119':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002120':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002121':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002122':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002123':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002124':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002125':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002126':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002127':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002128':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002129':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002130':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002131':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002132':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002133':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002134':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002135':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002136':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002137':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002138':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002139':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002140':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002141':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002142':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002143':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002144':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002145':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002146':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002147':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002148':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002149':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002150':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002151':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002152':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002153':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002154':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002155':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002156':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002157':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002158':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002159':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002160':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002161':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002162':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002163':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002164':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002165':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002166':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002167':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002168':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002169':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002170':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002171':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002172':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002173':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002174':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002175':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002176':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002177':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002178':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002179':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002180':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002181':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002182':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002183':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002184':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002185':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002186':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002187':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002188':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002189':
+ :text: 82 G 1620
+ :tag: 541$e
+ :transform: 1982 G 1620
+'409002050':
+ :text: 82 K 1485
+ :tag: 541$e
+ :transform: 1982 K 1485
+'409000564':
+ :text: 83 g 1840
+ :tag: 541$e
+ :transform: 1983 g 1840
+'409000643':
+ :text: 83 g 1840
+ :tag: 541$e
+ :transform: 1983 g 1840
+'409000644':
+ :text: 83 g 1840
+ :tag: 541$e
+ :transform: 1983 g 1840
+'409002051':
+ :text: 84 K 56
+ :tag: 541$e
+ :transform: 1984 K 56
+'402010827':
+ :text: 87 G 1570
+ :tag: 541$e
+ :transform: 1987 G 1570
+'409001411':
+ :text: 90 G 2825
+ :tag: 541$e
+ :transform: 1990 G 2825
+'410001052':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001053':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001055':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001057':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001061':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001062':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001064':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001065':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001066':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001067':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001068':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001069':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001070':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001071':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001072':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001073':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001074':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001077':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001078':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'410001079':
+ :text: 90 G 6750
+ :tag: 541$e
+ :transform: 1990 G 6750
+'409002061':
+ :text: 90 G 8503
+ :tag: 541$e
+ :transform: 1990 G 8503
+'409000578':
+ :text: 90 G 932
+ :tag: 541$e
+ :transform: 1990 G 932
+'409000713':
+ :text: 90 G 932
+ :tag: 541$e
+ :transform: 1990 G 932
+'409000732':
+ :text: 90 G 932
+ :tag: 541$e
+ :transform: 1990 G 932
+'409000811':
+ :text: 90 G 932
+ :tag: 541$e
+ :transform: 1990 G 932
+'409000812':
+ :text: 90 G 932
+ :tag: 541$e
+ :transform: 1990 G 932
+'409000844':
+ :text: 90 G 932
+ :tag: 541$e
+ :transform: 1990 G 932
+'409000845':
+ :text: 90 G 932
+ :tag: 541$e
+ :transform: 1990 G 932
+'409000846':
+ :text: 90 G 932
+ :tag: 541$e
+ :transform: 1990 G 932
+'409000544':
+ :text: 90 G 9332
+ :tag: 541$e
+ :transform: 1990 G 9332
+'402002938':
+ :text: 93495 [Af 3292/2 (n.8)]
+ :tag: 852$d
+ :transform:
+'402002942':
+ :text: 96256 [Af 3292/1 (n.10)]
+ :tag: 852$d
+ :transform:
+'402002981':
+ :text: 99607 [part 2]
+ :tag: 852$d
+ :transform:
+'400015066':
+ :text: A 46
+ :tag: 852$d
+ :transform:
+'402003721':
+ :text: a 846
+ :tag: 852$d
+ :transform:
+'400006827':
+ :text: A No. 7
+ :tag: 852$d
+ :transform:
+'400015064':
+ :text: 'A: 45'
+ :tag: 852$d
+ :transform:
+'400014264':
+ :text: A:n.10.
+ :tag: 852$d
+ :transform:
+'400015067':
+ :text: A. 12
+ :tag: 852$d
+ :transform:
+'400015073':
+ :text: A. 14
+ :tag: 852$d
+ :transform:
+'400015077':
+ :text: A. 16
+ :tag: 852$d
+ :transform:
+'400015076':
+ :text: A. 17
+ :tag: 852$d
+ :transform:
+'400015075':
+ :text: A. 18
+ :tag: 852$d
+ :transform:
+'400015047':
+ :text: A. 20
+ :tag: 852$d
+ :transform:
+'400015072':
+ :text: A. 21
+ :tag: 852$d
+ :transform:
+'400015071':
+ :text: A. 25
+ :tag: 852$d
+ :transform:
+'400015069':
+ :text: A. 27
+ :tag: 852$d
+ :transform:
+'400015068':
+ :text: A. 28
+ :tag: 852$d
+ :transform:
+'400015059':
+ :text: A. 35
+ :tag: 852$d
+ :transform:
+'400015056':
+ :text: A. 36
+ :tag: 852$d
+ :transform:
+'400015055':
+ :text: A. 38
+ :tag: 852$d
+ :transform:
+'400015053':
+ :text: A. 39
+ :tag: 852$d
+ :transform:
+'400015054':
+ :text: A. 40
+ :tag: 852$d
+ :transform:
+'400015046':
+ :text: Dep.MK 769
+ :tag: 852$d
+ :transform:
+'400015061':
+ :text: A. 42
+ :tag: 852$d
+ :transform:
+'400015062':
+ :text: A. 43
+ :tag: 852$d
+ :transform:
+'400015065':
+ :text: A. 48
+ :tag: 852$d
+ :transform:
+'400015052':
+ :text: A. 55
+ :tag: 852$d
+ :transform:
+'400015051':
+ :text: A. 56
+ :tag: 852$d
+ :transform:
+'400015048':
+ :text: A. 60
+ :tag: 852$d
+ :transform:
+'400015045':
+ :text: A. 65
+ :tag: 852$d
+ :transform:
+'400015060':
+ :text: A. 65
+ :tag: 852$d
+ :transform:
+'400015058':
+ :text: A. 79
+ :tag: 852$d
+ :transform:
+'400015023':
+ :text: A. 9
+ :tag: 852$d
+ :transform:
+'407000163':
+ :text: A. N|o 7.
+ :tag: 852$d
+ :transform:
+'403008158':
+ :text: a.1
+ :tag: 852$d
+ :transform:
+'403008184':
+ :text: a.1
+ :tag: 852$d
+ :transform:
+'403008299':
+ :text: a.10
+ :tag: 852$d
+ :transform:
+'403008170':
+ :text: a.11
+ :tag: 852$d
+ :transform:
+'403008185':
+ :text: a.11b
+ :tag: 852$d
+ :transform:
+'403008165':
+ :text: a.12
+ :tag: 852$d
+ :transform:
+'403008167':
+ :text: a.13
+ :tag: 852$d
+ :transform:
+'403008271':
+ :text: a.15
+ :tag: 852$d
+ :transform:
+'403008178':
+ :text: a.17
+ :tag: 852$d
+ :transform:
+'403008156':
+ :text: a.2
+ :tag: 852$d
+ :transform:
+'403008278':
+ :text: a.20
+ :tag: 852$d
+ :transform:
+'403008270':
+ :text: a.22
+ :tag: 852$d
+ :transform:
+'403008289':
+ :text: a.25
+ :tag: 852$d
+ :transform:
+'403008263':
+ :text: a.26
+ :tag: 852$d
+ :transform:
+'403008195':
+ :text: a.27
+ :tag: 852$d
+ :transform:
+'403008291':
+ :text: a.28
+ :tag: 852$d
+ :transform:
+'403008284':
+ :text: a.3
+ :tag: 852$d
+ :transform:
+'403008267':
+ :text: a.30
+ :tag: 852$d
+ :transform:
+'403008371':
+ :text: a.34
+ :tag: 852$d
+ :transform:
+'403008358':
+ :text: a.35
+ :tag: 852$d
+ :transform:
+'403008345':
+ :text: a.36
+ :tag: 852$d
+ :transform:
+'403008305':
+ :text: a.37
+ :tag: 852$d
+ :transform:
+'403008301':
+ :text: a.38
+ :tag: 852$d
+ :transform:
+'403008207':
+ :text: a.4
+ :tag: 852$d
+ :transform:
+'403008193':
+ :text: a.41
+ :tag: 852$d
+ :transform:
+'403008142':
+ :text: a.42
+ :tag: 852$d
+ :transform:
+'403008273':
+ :text: a.44
+ :tag: 852$d
+ :transform:
+'403008272':
+ :text: a.45
+ :tag: 852$d
+ :transform:
+'403008149':
+ :text: a.46
+ :tag: 852$d
+ :transform:
+'403008177':
+ :text: a.48
+ :tag: 852$d
+ :transform:
+'403008155':
+ :text: a.5
+ :tag: 852$d
+ :transform:
+'403008286':
+ :text: a.51
+ :tag: 852$d
+ :transform:
+'403008298':
+ :text: a.52
+ :tag: 852$d
+ :transform:
+'403008269':
+ :text: a.54
+ :tag: 852$d
+ :transform:
+'403008350':
+ :text: a.55
+ :tag: 852$d
+ :transform:
+'403008357':
+ :text: a.57
+ :tag: 852$d
+ :transform:
+'403008407':
+ :text: a.58
+ :tag: 852$d
+ :transform:
+'403008408':
+ :text: a.58
+ :tag: 852$d
+ :transform:
+'403008478':
+ :text: a.59
+ :tag: 852$d
+ :transform:
+'403008208':
+ :text: a.60
+ :tag: 852$d
+ :transform:
+'403008276':
+ :text: a.8
+ :tag: 852$d
+ :transform:
+'403008281':
+ :text: a.83
+ :tag: 852$d
+ :transform:
+'400056311':
+ :text: MS A 4
+ :tag: 852$d
+ :transform:
+'400056255':
+ :text: MS H 2
+ :tag: 852$d
+ :transform:
+'400056327':
+ :text: MS D 14
+ :tag: 852$d
+ :transform:
+'410001400':
+ :text: A2 0136
+ :tag: 852$d
+ :transform:
+'410001341':
+ :text: A2 0279
+ :tag: 852$d
+ :transform:
+'410001339':
+ :text: A2 0310, A2 0325
+ :tag: 852$d
+ :transform:
+'410001344':
+ :text: A2 0319
+ :tag: 852$d
+ :transform:
+'410001333':
+ :text: A2 0323
+ :tag: 852$d
+ :transform:
+'410001330':
+ :text: A2 0327
+ :tag: 852$d
+ :transform:
+'410001340':
+ :text: A2 0328
+ :tag: 852$d
+ :transform:
+'410001337':
+ :text: A2 0330
+ :tag: 852$d
+ :transform:
+'410001346':
+ :text: A2 0342
+ :tag: 852$d
+ :transform:
+'410001343':
+ :text: A2 0348
+ :tag: 852$d
+ :transform:
+'410001332':
+ :text: A2 3851
+ :tag: 852$d
+ :transform:
+'410001338':
+ :text: A2 4628
+ :tag: 852$d
+ :transform:
+'410001320':
+ :text: A2 6092
+ :tag: 852$d
+ :transform:
+'410001459':
+ :text: A2 6464, A2 6479, A2 6480, EA 6482, A2 6485, A2 6487, A2 6491, A2 6509
+ :tag: 852$d
+ :transform:
+'410001460':
+ :text: A2 6479
+ :tag: 852$d
+ :transform:
+'410001461':
+ :text: A2 6479
+ :tag: 852$d
+ :transform:
+'410001462':
+ :text: A2 6480
+ :tag: 852$d
+ :transform:
+'410001464':
+ :text: A2 6485
+ :tag: 852$d
+ :transform:
+'410001465':
+ :text: A2 6487
+ :tag: 852$d
+ :transform:
+'410001466':
+ :text: A2 6491
+ :tag: 852$d
+ :transform:
+'410001467':
+ :text: A2 6509
+ :tag: 852$d
+ :transform:
+'410001353':
+ :text: A2 8546
+ :tag: 852$d
+ :transform:
+'410001328':
+ :text: A2 8548
+ :tag: 852$d
+ :transform:
+'410001417':
+ :text: A3 0082
+ :tag: 852$d
+ :transform:
+'410001355':
+ :text: A3 0089, A3 0320, A3 4640
+ :tag: 852$d
+ :transform:
+'410001357':
+ :text: A3 0093, A3 0116, A3 0128, A3 0132, A3 0143, A3 7771
+ :tag: 852$d
+ :transform:
+'410001418':
+ :text: A3 0099
+ :tag: 852$d
+ :transform:
+'410001360':
+ :text: A3 0117, A3 0146, A3 0200
+ :tag: 852$d
+ :transform:
+'410001398':
+ :text: A3 0121, A3 0125, A3 0209, A3 8554
+ :tag: 852$d
+ :transform:
+'410001399':
+ :text: A3 0124, A3 0192, A3 4763
+ :tag: 852$d
+ :transform:
+'410001415':
+ :text: A3 0150
+ :tag: 852$d
+ :transform:
+'410001362':
+ :text: A3 0172, A3 0206, A3 4766, A3 5180, A3 7803
+ :tag: 852$d
+ :transform:
+'410001420':
+ :text: A3 0181
+ :tag: 852$d
+ :transform:
+'410001945':
+ :text: A3 0666, A3 0668, A3 0703, A3 0706, A3 0717, A3 0751, A3 0761, A3 0776, A3
+ 0783, A3 0791, A3 0805
+ :tag: 852$d
+ :transform:
+'410001401':
+ :text: A3 4620
+ :tag: 852$d
+ :transform:
+'410001364':
+ :text: A3 4679
+ :tag: 852$d
+ :transform:
+'410001397':
+ :text: A3 4771
+ :tag: 852$d
+ :transform:
+'410001468':
+ :text: A3 6516
+ :tag: 852$d
+ :transform:
+'410001962':
+ :text: A3 9482, A3 9485, A3 9501, A3 9521, A3 9531, A3 9541, A3 9559, A3 9568, A3
+ 9599, A3 9612, A3 9616
+ :tag: 852$d
+ :transform:
+'410001973':
+ :text: A4 0606, A4 1042, A4 6122, A4 6129, A4 6131, A4 6143, A4 6157, A4 6171, A4
+ 6184, A4 6199, A4 6200, A4 6258, A4 6292, A4 6295, A4 6302, A4 6313, A4 6335,
+ A4 6350, A4 6356, A4 6364, A4 6370, A4 6385, A4 6394, A4 6398, A4 6408, A4 6441,
+ A4 6453, A4 6478, A4 6490
+ :tag: 852$d
+ :transform:
+'410001984':
+ :text: A4 0607
+ :tag: 852$d
+ :transform:
+'410001421':
+ :text: A4 5841
+ :tag: 852$d
+ :transform:
+'410001422':
+ :text: A4 5842
+ :tag: 852$d
+ :transform:
+'410001423':
+ :text: A4 5844
+ :tag: 852$d
+ :transform:
+'410001424':
+ :text: A4 5860
+ :tag: 852$d
+ :transform:
+'410001425':
+ :text: A4 5868
+ :tag: 852$d
+ :transform:
+'410001426':
+ :text: A4 5872
+ :tag: 852$d
+ :transform:
+'410001427':
+ :text: A4 5897
+ :tag: 852$d
+ :transform:
+'410001428':
+ :text: A4 5897
+ :tag: 852$d
+ :transform:
+'410001429':
+ :text: A4 5899
+ :tag: 852$d
+ :transform:
+'410001430':
+ :text: A4 5927
+ :tag: 852$d
+ :transform:
+'410001431':
+ :text: A4 5946
+ :tag: 852$d
+ :transform:
+'410001432':
+ :text: A4 5951
+ :tag: 852$d
+ :transform:
+'410001988':
+ :text: A5 0617, A5 1104, A5 1125, A5 1142, A5 1146, A5 1152, A5 1175, A5 1186, A5
+ 1207, A5 1226, A5 1242, A5 1245, A5 1248, A5 1250, A5 1256, A5 1260, A5 1306,
+ A5 1322, A5 1326, A5 1328, A5 1331, A5 1356, A5 1367, A5 1377, A5 1394, A5 1402,
+ A5 1409, A5 1426, A5 1438, A5 1444, A5 1456, A5 1465, A5 1473, A5 2531
+ :tag: 852$d
+ :transform:
+'410001404':
+ :text: A5 5836
+ :tag: 852$d
+ :transform:
+'410001402':
+ :text: A5 7042
+ :tag: 852$d
+ :transform:
+'410001403':
+ :text: A5 7060
+ :tag: 852$d
+ :transform:
+'410001452':
+ :text: A6 3849
+ :tag: 852$d
+ :transform:
+'410001992':
+ :text: A6 4024, A6 4027, A6 4046, A6 4057, A6 4062, A6 4081, A6 4085, A6 4088, A6
+ 4093, A6 4099, A6 4102, A6 4151, A6 4153, A6 4156, A6 4170, A6 4171, A6 4179,
+ A6 4197, A6 4206, A6 4230, A6 4234, A6 4241, A6 4250, A6 4257, A6 4262, A6 4273,
+ A6 4306, A6 4313, A6 4318
+ :tag: 852$d
+ :transform:
+'410001433':
+ :text: A6 6253
+ :tag: 852$d
+ :transform:
+'410001434':
+ :text: A6 6253, A6 6257, A6 6289, A6 6309, A6 6321, A6 6323, A6 6331, A6 6348, A6
+ 6356, A6 6371, A6 6381, A6 6422, A6 6438, A6 6445, A6 6446, A6 6448, A6 6452,
+ A6 6455, A6 3849, A6 6456, A6 6460, A6 6464, A6 6479, A2 6480, EA 6482, A2 6485,
+ A2 6487, A2 6491, A2 6509, A3 6516
+ :tag: 852$d
+ :transform:
+'410001435':
+ :text: A6 6257
+ :tag: 852$d
+ :transform:
+'410001436':
+ :text: A6 6289
+ :tag: 852$d
+ :transform:
+'410001437':
+ :text: A6 6309
+ :tag: 852$d
+ :transform:
+'410001438':
+ :text: A6 6321
+ :tag: 852$d
+ :transform:
+'410001439':
+ :text: A6 6323
+ :tag: 852$d
+ :transform:
+'410001440':
+ :text: A6 6331
+ :tag: 852$d
+ :transform:
+'410001441':
+ :text: A6 6348
+ :tag: 852$d
+ :transform:
+'410001442':
+ :text: A6 6356
+ :tag: 852$d
+ :transform:
+'410001443':
+ :text: A6 6371
+ :tag: 852$d
+ :transform:
+'410001444':
+ :text: A6 6381
+ :tag: 852$d
+ :transform:
+'410001445':
+ :text: A6 6422
+ :tag: 852$d
+ :transform:
+'410001446':
+ :text: A6 6438
+ :tag: 852$d
+ :transform:
+'410001447':
+ :text: A6 6445
+ :tag: 852$d
+ :transform:
+'410001448':
+ :text: A6 6446
+ :tag: 852$d
+ :transform:
+'410001449':
+ :text: A6 6448
+ :tag: 852$d
+ :transform:
+'410001450':
+ :text: A6 6452
+ :tag: 852$d
+ :transform:
+'410001451':
+ :text: A6 6455
+ :tag: 852$d
+ :transform:
+'410001453':
+ :text: A6 6456
+ :tag: 852$d
+ :transform:
+'410001454':
+ :text: A6 6460
+ :tag: 852$d
+ :transform:
+'410001485':
+ :text: A7 0123
+ :tag: 852$d
+ :transform:
+'410001484':
+ :text: A7 0151, A7 2225
+ :tag: 852$d
+ :transform:
+'410001486':
+ :text: A7 0203
+ :tag: 852$d
+ :transform:
+'410001470':
+ :text: A7 0544, A7 0591, A7 0605, A7 0611, A7 0625, A7 0637
+ :tag: 852$d
+ :transform:
+'410001994':
+ :text: A7 2538, A7 2544, A7 2562, A7 2614, A7 2621, A7 2639, A7 2651, A7 2666, A7
+ 2685, A7 2706, A7 2720, A7 2721, A7 2741, A7 2752, A7 2762, A7 2769, A7 2770,
+ A7 2785, A7 2794, A7 2803, A7 2817, A7 2828, A7 2836, A7 2840, A7 2868, A7 2869,
+ A7 2876, A7 2888, A7 2892, A7 2958, A7 2968, A7 2970
+ :tag: 852$d
+ :transform:
+'410001996':
+ :text: A7 3920
+ :tag: 852$d
+ :transform:
+'410001488':
+ :text: A7 8457, A7 8521, A7 8600
+ :tag: 852$d
+ :transform:
+'410001487':
+ :text: A7 8538
+ :tag: 852$d
+ :transform:
+'410001995':
+ :text: A7 8616
+ :tag: 852$d
+ :transform:
+'400100249':
+ :text: Aa 20 0
+ :tag: 852$d
+ :transform:
+'400100266':
+ :text: Aa 46
+ :tag: 852$d
+ :transform:
+'400066262':
+ :text: Ab 444
+ :tag: 852$d
+ :transform:
+'402003000':
+ :text: Ac 1411 d
+ :tag: 852$d
+ :transform:
+'402003008':
+ :text: Af 1685
+ :tag: 852$d
+ :transform:
+'402003161':
+ :text: Af 736
+ :tag: 852$d
+ :transform:
+'402006583':
+ :text: B 23.
+ :tag: 852$d
+ :transform:
+'402006584':
+ :text: B. 13.
+ :tag: 852$d
+ :transform:
+'402006649':
+ :text: B. 15.
+ :tag: 852$d
+ :transform:
+'400014970':
+ :text: B. 2
+ :tag: 852$d
+ :transform:
+'402006569':
+ :text: B. 3
+ :tag: 852$d
+ :transform:
+'402006301':
+ :text: B. 4.
+ :tag: 852$d
+ :transform:
+'400107102':
+ :text: B.17.
+ :tag: 852$d
+ :transform:
+'403008297':
+ :text: B.2
+ :tag: 852$d
+ :transform:
+'402006164':
+ :text: B.5.
+ :tag: 852$d
+ :transform:
+'403008164':
+ :text: B.8
+ :tag: 852$d
+ :transform:
+'400104289':
+ :text: B.b.35
+ :tag: 852$d
+ :transform:
+'410001938':
+ :text: B1 0024
+ :tag: 852$d
+ :transform:
+'410001886':
+ :text: B1 0032
+ :tag: 852$d
+ :transform:
+'410001914':
+ :text: B1 0326
+ :tag: 852$d
+ :transform:
+'410001916':
+ :text: B1 0326/1, B1 0326/2, B1 0968, B1 0975, B1 0984, B1 0986, B1 0990, B1 0997,
+ B1 1008, B1 1011
+ :tag: 852$d
+ :transform:
+'410001917':
+ :text: B1 0326/1, B1 0968, B1 0975, B1 0984, B1 0986
+ :tag: 852$d
+ :transform:
+'410001918':
+ :text: B1 0326/2, B1 0990, B1 0997, B1 1008, B1 1011
+ :tag: 852$d
+ :transform:
+'410001882':
+ :text: B1 0361
+ :tag: 852$d
+ :transform:
+'410001883':
+ :text: B1 0377
+ :tag: 852$d
+ :transform:
+'410001942':
+ :text: B1 0608
+ :tag: 852$d
+ :transform:
+'410001943':
+ :text: B1 0608
+ :tag: 852$d
+ :transform:
+'410001944':
+ :text: B1 0608
+ :tag: 852$d
+ :transform:
+'410001756':
+ :text: B1 0621, B1 4897, B1 7781, B1 4898, B1 4883, B1 4884, B1 5200, B1 5213, B1
+ 5224, B1 5240, B1 5252, B1 5256, B1 5266, B1 5277, B1 5290, B1 5292, B1 5308, B1
+ 5309, B1 5312, B1 5317, B1 7827, B1 5319, B1 5323, B1 5331, B1 5341, B1 5350
+ :tag: 852$d
+ :transform:
+'410001915':
+ :text: B1 1046, B1 1051, B1 1058, B1 0289, B1 6017, B1 6019, B1 6022, B1 6035, B1
+ 6062
+ :tag: 852$d
+ :transform:
+'410001939':
+ :text: B1 1698
+ :tag: 852$d
+ :transform:
+'410001863':
+ :text: B1 1703
+ :tag: 852$d
+ :transform:
+'410001870':
+ :text: B1 1713
+ :tag: 852$d
+ :transform:
+'410001871':
+ :text: B1 1719
+ :tag: 852$d
+ :transform:
+'410001858':
+ :text: B1 1726
+ :tag: 852$d
+ :transform:
+'410001857':
+ :text: B1 1731
+ :tag: 852$d
+ :transform:
+'410001940':
+ :text: B1 1742
+ :tag: 852$d
+ :transform:
+'410001890':
+ :text: B1 3860
+ :tag: 852$d
+ :transform:
+'410001889':
+ :text: B1 3884
+ :tag: 852$d
+ :transform:
+'410001888':
+ :text: B1 3901
+ :tag: 852$d
+ :transform:
+'410001885':
+ :text: B1 3909
+ :tag: 852$d
+ :transform:
+'410001796':
+ :text: B1 4883
+ :tag: 852$d
+ :transform:
+'410001794':
+ :text: B1 4883, B1 4884
+ :tag: 852$d
+ :transform:
+'410001797':
+ :text: B1 4884
+ :tag: 852$d
+ :transform:
+'410001789':
+ :text: B1 4897
+ :tag: 852$d
+ :transform:
+'410001791':
+ :text: B1 4898
+ :tag: 852$d
+ :transform:
+'410001875':
+ :text: B1 5129
+ :tag: 852$d
+ :transform:
+'410001878':
+ :text: B1 5138
+ :tag: 852$d
+ :transform:
+'410001799':
+ :text: B1 5200
+ :tag: 852$d
+ :transform:
+'410001802':
+ :text: B1 5213
+ :tag: 852$d
+ :transform:
+'410001803':
+ :text: B1 5224
+ :tag: 852$d
+ :transform:
+'410001804':
+ :text: B1 5240
+ :tag: 852$d
+ :transform:
+'410001805':
+ :text: B1 5252
+ :tag: 852$d
+ :transform:
+'410001806':
+ :text: B1 5256
+ :tag: 852$d
+ :transform:
+'410001807':
+ :text: B1 5266
+ :tag: 852$d
+ :transform:
+'410001808':
+ :text: B1 5277
+ :tag: 852$d
+ :transform:
+'410001809':
+ :text: B1 5290
+ :tag: 852$d
+ :transform:
+'410001810':
+ :text: B1 5298
+ :tag: 852$d
+ :transform:
+'410001811':
+ :text: B1 5308
+ :tag: 852$d
+ :transform:
+'410001812':
+ :text: B1 5309
+ :tag: 852$d
+ :transform:
+'410001813':
+ :text: B1 5312
+ :tag: 852$d
+ :transform:
+'410001837':
+ :text: B1 5312
+ :tag: 852$d
+ :transform:
+'410001814':
+ :text: B1 5317
+ :tag: 852$d
+ :transform:
+'410001840':
+ :text: B1 5317
+ :tag: 852$d
+ :transform:
+'410001816':
+ :text: B1 5319
+ :tag: 852$d
+ :transform:
+'410001817':
+ :text: B1 5323
+ :tag: 852$d
+ :transform:
+'410001818':
+ :text: B1 5331
+ :tag: 852$d
+ :transform:
+'410001819':
+ :text: B1 5341
+ :tag: 852$d
+ :transform:
+'410001820':
+ :text: B1 5350
+ :tag: 852$d
+ :transform:
+'410001887':
+ :text: B1 6179
+ :tag: 852$d
+ :transform:
+'410001881':
+ :text: B1 7240
+ :tag: 852$d
+ :transform:
+'410001879':
+ :text: B1 7256
+ :tag: 852$d
+ :transform:
+'410001884':
+ :text: B1 7762
+ :tag: 852$d
+ :transform:
+'410001874':
+ :text: B1 7762, B1 5129, B1 5138, B1 7256, B1 7763, B1 7240, B1 0361, B1 0377
+ :tag: 852$d
+ :transform:
+'410001880':
+ :text: B1 7763
+ :tag: 852$d
+ :transform:
+'410001790':
+ :text: B1 7781
+ :tag: 852$d
+ :transform:
+'410001815':
+ :text: B1 7827
+ :tag: 852$d
+ :transform:
+'410001922':
+ :text: B1 8584
+ :tag: 852$d
+ :transform:
+'410001941':
+ :text: B1 8612
+ :tag: 852$d
+ :transform:
+'410001920':
+ :text: B1 8632
+ :tag: 852$d
+ :transform:
+'410001861':
+ :text: B1 9382
+ :tag: 852$d
+ :transform:
+'410001868':
+ :text: B1 9391
+ :tag: 852$d
+ :transform:
+'410001869':
+ :text: B1 9399
+ :tag: 852$d
+ :transform:
+'410001862':
+ :text: B1 9405
+ :tag: 852$d
+ :transform:
+'410001864':
+ :text: B1 9413
+ :tag: 852$d
+ :transform:
+'410001865':
+ :text: B1 9421
+ :tag: 852$d
+ :transform:
+'410001859':
+ :text: B1 9439
+ :tag: 852$d
+ :transform:
+'410001860':
+ :text: B1 9442
+ :tag: 852$d
+ :transform:
+'410001921':
+ :text: B1 9452
+ :tag: 852$d
+ :transform:
+'410001937':
+ :text: B1 9456
+ :tag: 852$d
+ :transform:
+'410001919':
+ :text: B1 9474
+ :tag: 852$d
+ :transform:
+'410001841':
+ :text: B1 9626
+ :tag: 852$d
+ :transform:
+'410001842':
+ :text: B1 9631
+ :tag: 852$d
+ :transform:
+'410001843':
+ :text: B1 9640
+ :tag: 852$d
+ :transform:
+'410001844':
+ :text: B1 9654
+ :tag: 852$d
+ :transform:
+'410001845':
+ :text: B1 9666
+ :tag: 852$d
+ :transform:
+'410001846':
+ :text: B1 9676
+ :tag: 852$d
+ :transform:
+'410001847':
+ :text: B1 9691
+ :tag: 852$d
+ :transform:
+'410001848':
+ :text: B1 9706
+ :tag: 852$d
+ :transform:
+'410001856':
+ :text: B1 9715
+ :tag: 852$d
+ :transform:
+'410001849':
+ :text: B1 9728
+ :tag: 852$d
+ :transform:
+'410001850':
+ :text: B1 9750
+ :tag: 852$d
+ :transform:
+'410001851':
+ :text: B1 9754
+ :tag: 852$d
+ :transform:
+'410001852':
+ :text: B1 9757
+ :tag: 852$d
+ :transform:
+'410001997':
+ :text: B1 9863
+ :tag: 852$d
+ :transform:
+'410001210':
+ :text: B2 0007
+ :tag: 852$d
+ :transform:
+'410001218':
+ :text: B2 0011, B2 0029, B2 0030
+ :tag: 852$d
+ :transform:
+'410001212':
+ :text: B2 0032, B2 0229, B2 0250, B2 0293, B2 0334, B2 0388, B2 0423, B2 0443, B2
+ 0470, B2 0480, B2 0513, B2 3600, B2 3639, B2 3664, B2 3686, B2 3711, B2 3731
+ :tag: 852$d
+ :transform:
+'410001207':
+ :text: B2 0036
+ :tag: 852$d
+ :transform:
+'410001199':
+ :text: B2 0048, B2 0053
+ :tag: 852$d
+ :transform:
+'410001204':
+ :text: B2 0051
+ :tag: 852$d
+ :transform:
+'410001217':
+ :text: B2 0056
+ :tag: 852$d
+ :transform:
+'410001220':
+ :text: B2 0059, B2 1680
+ :tag: 852$d
+ :transform:
+'410001260':
+ :text: B2 0241
+ :tag: 852$d
+ :transform:
+'410001240':
+ :text: B2 0243, B2 0245, B2 4761, B2 4816
+ :tag: 852$d
+ :transform:
+'410001245':
+ :text: B2 0316, B2 8550
+ :tag: 852$d
+ :transform:
+'410001292':
+ :text: B2 0647
+ :tag: 852$d
+ :transform:
+'410001256':
+ :text: B2 0665
+ :tag: 852$d
+ :transform:
+'410001149':
+ :text: B2 0806
+ :tag: 852$d
+ :transform:
+'410001150':
+ :text: B2 0808
+ :tag: 852$d
+ :transform:
+'410001151':
+ :text: B2 0810
+ :tag: 852$d
+ :transform:
+'410001152':
+ :text: B2 0814
+ :tag: 852$d
+ :transform:
+'410001153':
+ :text: B2 0817
+ :tag: 852$d
+ :transform:
+'410001154':
+ :text: B2 0821
+ :tag: 852$d
+ :transform:
+'410001155':
+ :text: B2 0827
+ :tag: 852$d
+ :transform:
+'410001156':
+ :text: B2 0831
+ :tag: 852$d
+ :transform:
+'410001157':
+ :text: B2 0834
+ :tag: 852$d
+ :transform:
+'410001158':
+ :text: B2 0836
+ :tag: 852$d
+ :transform:
+'410001159':
+ :text: B2 0840
+ :tag: 852$d
+ :transform:
+'410001182':
+ :text: B2 0843
+ :tag: 852$d
+ :transform:
+'410001183':
+ :text: B2 0847
+ :tag: 852$d
+ :transform:
+'410001162':
+ :text: B2 0850
+ :tag: 852$d
+ :transform:
+'410001163':
+ :text: B2 0858
+ :tag: 852$d
+ :transform:
+'410001164':
+ :text: B2 0860
+ :tag: 852$d
+ :transform:
+'410001165':
+ :text: B2 0863
+ :tag: 852$d
+ :transform:
+'410001166':
+ :text: B2 0864
+ :tag: 852$d
+ :transform:
+'410001167':
+ :text: B2 0865
+ :tag: 852$d
+ :transform:
+'410001168':
+ :text: B2 0870
+ :tag: 852$d
+ :transform:
+'410001169':
+ :text: B2 0875
+ :tag: 852$d
+ :transform:
+'410001170':
+ :text: B2 0879
+ :tag: 852$d
+ :transform:
+'410001171':
+ :text: B2 0882
+ :tag: 852$d
+ :transform:
+'410001172':
+ :text: B2 0892
+ :tag: 852$d
+ :transform:
+'410001173':
+ :text: B2 0895
+ :tag: 852$d
+ :transform:
+'410001174':
+ :text: B2 0899
+ :tag: 852$d
+ :transform:
+'410001175':
+ :text: B2 0913
+ :tag: 852$d
+ :transform:
+'410001176':
+ :text: B2 0918
+ :tag: 852$d
+ :transform:
+'410001177':
+ :text: B2 0923
+ :tag: 852$d
+ :transform:
+'410001178':
+ :text: B2 0928
+ :tag: 852$d
+ :transform:
+'410001179':
+ :text: B2 0948
+ :tag: 852$d
+ :transform:
+'410001180':
+ :text: B2 0950
+ :tag: 852$d
+ :transform:
+'410001181':
+ :text: B2 0960
+ :tag: 852$d
+ :transform:
+'410001160':
+ :text: B2 0963
+ :tag: 852$d
+ :transform:
+'410001161':
+ :text: B2 0966
+ :tag: 852$d
+ :transform:
+'410001288':
+ :text: B2 3786
+ :tag: 852$d
+ :transform:
+'410001246':
+ :text: B2 4685
+ :tag: 852$d
+ :transform:
+'410001242':
+ :text: B2 4688
+ :tag: 852$d
+ :transform:
+'410001232':
+ :text: B2 4773
+ :tag: 852$d
+ :transform:
+'410001238':
+ :text: B2 5374
+ :tag: 852$d
+ :transform:
+'410001123':
+ :text: B2 5994
+ :tag: 852$d
+ :transform:
+'410001209':
+ :text: B2 8539
+ :tag: 852$d
+ :transform:
+'410001208':
+ :text: B2 8541
+ :tag: 852$d
+ :transform:
+'410001219':
+ :text: B2 8544
+ :tag: 852$d
+ :transform:
+'410001234':
+ :text: B2 9622
+ :tag: 852$d
+ :transform:
+'410001216':
+ :text: B2 9879
+ :tag: 852$d
+ :transform:
+'410001228':
+ :text: B2 9984
+ :tag: 852$d
+ :transform:
+'410001206':
+ :text: B2 9996
+ :tag: 852$d
+ :transform:
+'410001202':
+ :text: B2 9999
+ :tag: 852$d
+ :transform:
+'400015171':
+ :text: BRH 1047, 16
+ :tag: 852$d
+ :transform:
+'400015172':
+ :text: BRH 1047, 17
+ :tag: 852$d
+ :transform:
+'402006090':
+ :text: C 1081
+ :tag: 852$d
+ :transform:
+'400014971':
+ :text: C. 104
+ :tag: 852$d
+ :transform:
+'403008400':
+ :text: c.13
+ :tag: 852$d
+ :transform:
+'400014351':
+ :text: C|n. 6
+ :tag: 852$d
+ :transform:
+'400014353':
+ :text: C|n. 6
+ :tag: 852$d
+ :transform:
+'400014355':
+ :text: C|n. 6
+ :tag: 852$d
+ :transform:
+'410001752':
+ :text: C1 0017
+ :tag: 852$d
+ :transform:
+'410001728':
+ :text: C1 0391
+ :tag: 852$d
+ :transform:
+'410001729':
+ :text: C1 0415
+ :tag: 852$d
+ :transform:
+'410001730':
+ :text: C1 0430
+ :tag: 852$d
+ :transform:
+'410001731':
+ :text: C1 0442
+ :tag: 852$d
+ :transform:
+'410001732':
+ :text: C1 0449
+ :tag: 852$d
+ :transform:
+'410001733':
+ :text: C1 0459
+ :tag: 852$d
+ :transform:
+'410001734':
+ :text: C1 0469
+ :tag: 852$d
+ :transform:
+'410001735':
+ :text: C1 0478
+ :tag: 852$d
+ :transform:
+'410001736':
+ :text: C1 0492
+ :tag: 852$d
+ :transform:
+'410001737':
+ :text: C1 0516
+ :tag: 852$d
+ :transform:
+'410001738':
+ :text: C1 0527
+ :tag: 852$d
+ :transform:
+'410001739':
+ :text: C1 0542
+ :tag: 852$d
+ :transform:
+'410001740':
+ :text: C1 0557
+ :tag: 852$d
+ :transform:
+'410001742':
+ :text: C1 0582
+ :tag: 852$d
+ :transform:
+'410001741':
+ :text: C1 0582, C1 0583
+ :tag: 852$d
+ :transform:
+'410001743':
+ :text: C1 0583
+ :tag: 852$d
+ :transform:
+'410001727':
+ :text: C1 0610, C1 0391, C1 0415, C1 0430, C1 0442, C1 0449, C1 0459, C1 0469, C1
+ 0478, C1 0492, C1 0516, C1 0527, C1 0542, C1 0557, C1 0582, C1 0583
+ :tag: 852$d
+ :transform:
+'410001749':
+ :text: C1 1970
+ :tag: 852$d
+ :transform:
+'410001751':
+ :text: C1 7790
+ :tag: 852$d
+ :transform:
+'410001750':
+ :text: C1 8512
+ :tag: 852$d
+ :transform:
+'410001744':
+ :text: C1 8531
+ :tag: 852$d
+ :transform:
+'410001745':
+ :text: C1 8531/2
+ :tag: 852$d
+ :transform:
+'410001746':
+ :text: C1 8531/3
+ :tag: 852$d
+ :transform:
+'410001747':
+ :text: C1 8532
+ :tag: 852$d
+ :transform:
+'410001748':
+ :text: C1 8533
+ :tag: 852$d
+ :transform:
+'410001137':
+ :text: C2 0085
+ :tag: 852$d
+ :transform:
+'410001131':
+ :text: C2 0145
+ :tag: 852$d
+ :transform:
+'410001118':
+ :text: C2 0210, C2 4759, C2 6078
+ :tag: 852$d
+ :transform:
+'410001112':
+ :text: C2 0216
+ :tag: 852$d
+ :transform:
+'410001128':
+ :text: C2 0235
+ :tag: 852$d
+ :transform:
+'410001145':
+ :text: C2 0247
+ :tag: 852$d
+ :transform:
+'410001109':
+ :text: C2 0249
+ :tag: 852$d
+ :transform:
+'410001129':
+ :text: C2 0254
+ :tag: 852$d
+ :transform:
+'410001142':
+ :text: C2 0259
+ :tag: 852$d
+ :transform:
+'410001148':
+ :text: C2 0357
+ :tag: 852$d
+ :transform:
+'410001184':
+ :text: C2 0361
+ :tag: 852$d
+ :transform:
+'410001469':
+ :text: C2 1937
+ :tag: 852$d
+ :transform:
+'410001135':
+ :text: C2 2219
+ :tag: 852$d
+ :transform:
+'410001117':
+ :text: C2 4618, C2 4645, C2 4659
+ :tag: 852$d
+ :transform:
+'410001126':
+ :text: C2 4622, C2 4686
+ :tag: 852$d
+ :transform:
+'410001133':
+ :text: C2 4639
+ :tag: 852$d
+ :transform:
+'410001138':
+ :text: C2 4644
+ :tag: 852$d
+ :transform:
+'410001146':
+ :text: C2 4651
+ :tag: 852$d
+ :transform:
+'410001108':
+ :text: C2 4652
+ :tag: 852$d
+ :transform:
+'410001144':
+ :text: C2 4654
+ :tag: 852$d
+ :transform:
+'410001124':
+ :text: C2 4696
+ :tag: 852$d
+ :transform:
+'410001143':
+ :text: C2 4754
+ :tag: 852$d
+ :transform:
+'410001115':
+ :text: C2 4903
+ :tag: 852$d
+ :transform:
+'410001136':
+ :text: C2 4994
+ :tag: 852$d
+ :transform:
+'410001139':
+ :text: C2 5013
+ :tag: 852$d
+ :transform:
+'410001127':
+ :text: C2 5090
+ :tag: 852$d
+ :transform:
+'410001114':
+ :text: C2 5156
+ :tag: 852$d
+ :transform:
+'410001121':
+ :text: C2 5969
+ :tag: 852$d
+ :transform:
+'410001122':
+ :text: C2 5969
+ :tag: 852$d
+ :transform:
+'410001134':
+ :text: C2 6082
+ :tag: 852$d
+ :transform:
+'410001110':
+ :text: C2 6096
+ :tag: 852$d
+ :transform:
+'410001147':
+ :text: C2 6099
+ :tag: 852$d
+ :transform:
+'410001132':
+ :text: C2 8527
+ :tag: 852$d
+ :transform:
+'410001111':
+ :text: C2 8529
+ :tag: 852$d
+ :transform:
+'410001140':
+ :text: C2 8987, C2 9040, C2 9098, C2 9120, C2 9157, C2 9165, C2 9183, C2 9200
+ :tag: 852$d
+ :transform:
+'400216125':
+ :text: CC.
+ :tag: 852$d
+ :transform:
+'402004054':
+ :text: CF 100
+ :tag: 852$d
+ :transform:
+'400056279':
+ :text: MS A 19
+ :tag: 852$d
+ :transform:
+'400056315':
+ :text: MS A 8
+ :tag: 852$d
+ :transform:
+'400056264':
+ :text: MS F 3
+ :tag: 852$d
+ :transform:
+'400056310':
+ :text: MS A 3
+ :tag: 852$d
+ :transform:
+'400100083':
+ :text: Cn.N. 2
+ :tag: 852$d
+ :transform:
+'400100112':
+ :text: o.p.
+ :tag: 852$d
+ :transform:
+'400014979':
+ :text: Coll.mus. 19
+ :tag: 852$d
+ :transform:
+'400014980':
+ :text: Coll.Mus.No. 17
+ :tag: 852$d
+ :transform:
+'400196078':
+ :text: Ms. H.H.IV 182 (30) (Ms.1208)
+ :tag: 852$d
+ :transform:
+'400066018':
+ :text: D 10
+ :tag: 852$d
+ :transform:
+'400065807':
+ :text: D 12
+ :tag: 852$d
+ :transform:
+'400065808':
+ :text: D 12
+ :tag: 852$d
+ :transform:
+'400065809':
+ :text: D 12
+ :tag: 852$d
+ :transform:
+'400065810':
+ :text: D 12
+ :tag: 852$d
+ :transform:
+'400065811':
+ :text: D 12
+ :tag: 852$d
+ :transform:
+'400065812':
+ :text: D 12
+ :tag: 852$d
+ :transform:
+'400066012':
+ :text: D 9
+ :tag: 852$d
+ :transform:
+'400196193':
+ :text: D. 42.
+ :tag: 852$d
+ :transform:
+'400012005':
+ :text: D. n. 11.
+ :tag: 852$d
+ :transform:
+'400012007':
+ :text: D. n. 11.
+ :tag: 852$d
+ :transform:
+'400012006':
+ :text: D. n. 12.
+ :tag: 852$d
+ :transform:
+'407001604':
+ :text: DAw 493
+ :tag: 852$d
+ :transform:
+'407001605':
+ :text: DAw 493
+ :tag: 852$d
+ :transform:
+'407001606':
+ :text: DAw 493
+ :tag: 852$d
+ :transform:
+'407001607':
+ :text: DAw 493
+ :tag: 852$d
+ :transform:
+'402001223':
+ :text: Dep.MK 232
+ :tag: 852$d
+ :transform:
+'402001222':
+ :text: Dep.MK 236
+ :tag: 852$d
+ :transform:
+'400014965':
+ :text: Dep.MK 401a
+ :tag: 852$d
+ :transform:
+'400014975':
+ :text: Dep.MK 461
+ :tag: 852$d
+ :transform:
+'400014972':
+ :text: Dep.MK 462
+ :tag: 852$d
+ :transform:
+'400014988':
+ :text: Dep.MK 522
+ :tag: 852$d
+ :transform:
+'400237395':
+ :text: Dep.MK 522
+ :tag: 852$d
+ :transform:
+'400237396':
+ :text: Dep.MK 522
+ :tag: 852$d
+ :transform:
+'400237397':
+ :text: Dep.MK 522
+ :tag: 852$d
+ :transform:
+'400237398':
+ :text: Dep.MK 522
+ :tag: 852$d
+ :transform:
+'400237399':
+ :text: Dep.MK 522
+ :tag: 852$d
+ :transform:
+'400237400':
+ :text: Dep.MK 522
+ :tag: 852$d
+ :transform:
+'400015000':
+ :text: Dep.Mk 582
+ :tag: 852$d
+ :transform:
+'400015006':
+ :text: Dep.MK 588
+ :tag: 852$d
+ :transform:
+'400015001':
+ :text: Dep.MK 590
+ :tag: 852$d
+ :transform:
+'400015002':
+ :text: Dep.MK 591
+ :tag: 852$d
+ :transform:
+'400015005':
+ :text: Dep.MK 592
+ :tag: 852$d
+ :transform:
+'400015049':
+ :text: Dep.MK 776
+ :tag: 852$d
+ :transform:
+'402003239':
+ :text: e 11.
+ :tag: 852$d
+ :transform:
+'402003246':
+ :text: e 12.
+ :tag: 852$d
+ :transform:
+'400003832':
+ :text: E I Aa 2
+ :tag: 852$d
+ :transform:
+'400003856':
+ :text: E I Aa 3
+ :tag: 852$d
+ :transform:
+'400003809':
+ :text: E I Aa 4
+ :tag: 852$d
+ :transform:
+'400187799':
+ :text: E I Aa 4
+ :tag: 852$d
+ :transform:
+'400187800':
+ :text: E I Aa 4
+ :tag: 852$d
+ :transform:
+'400187801':
+ :text: E I Aa 4
+ :tag: 852$d
+ :transform:
+'400187802':
+ :text: E I Aa 4
+ :tag: 852$d
+ :transform:
+'400187803':
+ :text: E I Aa 4
+ :tag: 852$d
+ :transform:
+'400187804':
+ :text: E I Aa 4
+ :tag: 852$d
+ :transform:
+'400003824':
+ :text: E I Ab 1
+ :tag: 852$d
+ :transform:
+'400003810':
+ :text: E I Ab 11
+ :tag: 852$d
+ :transform:
+'400187829':
+ :text: E I Ab 11
+ :tag: 852$d
+ :transform:
+'400187830':
+ :text: E I Ab 11
+ :tag: 852$d
+ :transform:
+'400187831':
+ :text: E I Ab 11
+ :tag: 852$d
+ :transform:
+'400187832':
+ :text: E I Ab 11
+ :tag: 852$d
+ :transform:
+'400187833':
+ :text: E I Ab 11
+ :tag: 852$d
+ :transform:
+'400187834':
+ :text: E I Ab 11
+ :tag: 852$d
+ :transform:
+'400003814':
+ :text: E I Ab 2
+ :tag: 852$d
+ :transform:
+'400003828':
+ :text: E I ab 3
+ :tag: 852$d
+ :transform:
+'400003811':
+ :text: E I Ab 4
+ :tag: 852$d
+ :transform:
+'400003827':
+ :text: E I Ab 5
+ :tag: 852$d
+ :transform:
+'400003822':
+ :text: E I Ab 6
+ :tag: 852$d
+ :transform:
+'400003821':
+ :text: E I Ac 1
+ :tag: 852$d
+ :transform:
+'400003819':
+ :text: E I Ac 10
+ :tag: 852$d
+ :transform:
+'400003817':
+ :text: E I Ac 11
+ :tag: 852$d
+ :transform:
+'400003815':
+ :text: E I Ac 2
+ :tag: 852$d
+ :transform:
+'400003825':
+ :text: E I Ac 3
+ :tag: 852$d
+ :transform:
+'400003829':
+ :text: E I Ac 4
+ :tag: 852$d
+ :transform:
+'400003831':
+ :text: E I Ac 4
+ :tag: 852$d
+ :transform:
+'400003823':
+ :text: E I Ac 5
+ :tag: 852$d
+ :transform:
+'400003820':
+ :text: E I Ac 7
+ :tag: 852$d
+ :transform:
+'400003812':
+ :text: E I Ac 8
+ :tag: 852$d
+ :transform:
+'400003826':
+ :text: E I Ac 9
+ :tag: 852$d
+ :transform:
+'400003808':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400187787':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400187788':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400187789':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400187790':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400187791':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400187792':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400187793':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400187794':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400187795':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400187796':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400187797':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400187798':
+ :text: E I Ad 10
+ :tag: 852$d
+ :transform:
+'400003813':
+ :text: E I Ad 2
+ :tag: 852$d
+ :transform:
+'400003834':
+ :text: E I Ad 4
+ :tag: 852$d
+ :transform:
+'400003818':
+ :text: E I Ad 7
+ :tag: 852$d
+ :transform:
+'400003830':
+ :text: E I Ad 7
+ :tag: 852$d
+ :transform:
+'400003843':
+ :text: E I Ca 1
+ :tag: 852$d
+ :transform:
+'400003889':
+ :text: E I Da 2
+ :tag: 852$d
+ :transform:
+'400003890':
+ :text: E I Da 7
+ :tag: 852$d
+ :transform:
+'400003840':
+ :text: E I Dc 10
+ :tag: 852$d
+ :transform:
+'400003839':
+ :text: E I Dd 1
+ :tag: 852$d
+ :transform:
+'400003841':
+ :text: E I Dd 1
+ :tag: 852$d
+ :transform:
+'400003842':
+ :text: E I Dd 3
+ :tag: 852$d
+ :transform:
+'400003888':
+ :text: E I Dd 8
+ :tag: 852$d
+ :transform:
+'400003838':
+ :text: E I De 1
+ :tag: 852$d
+ :transform:
+'400003836':
+ :text: E I De 2
+ :tag: 852$d
+ :transform:
+'400003835':
+ :text: E I De 3
+ :tag: 852$d
+ :transform:
+'400003837':
+ :text: E I De 4
+ :tag: 852$d
+ :transform:
+'400003854':
+ :text: E II Aa 1
+ :tag: 852$d
+ :transform:
+'400003855':
+ :text: E II Ad 2
+ :tag: 852$d
+ :transform:
+'400003857':
+ :text: E II Ad 29
+ :tag: 852$d
+ :transform:
+'400003850':
+ :text: E II Ca 10
+ :tag: 852$d
+ :transform:
+'400003845':
+ :text: E II Ca 12
+ :tag: 852$d
+ :transform:
+'400003846':
+ :text: E II Ca 14
+ :tag: 852$d
+ :transform:
+'400003849':
+ :text: E II Ca 3
+ :tag: 852$d
+ :transform:
+'400003851':
+ :text: E II Ca 4
+ :tag: 852$d
+ :transform:
+'400003848':
+ :text: E II Ca 5
+ :tag: 852$d
+ :transform:
+'400003847':
+ :text: E II Ca 6
+ :tag: 852$d
+ :transform:
+'400003870':
+ :text: E III Aa 1
+ :tag: 852$d
+ :transform:
+'400003872':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187840':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187841':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187842':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187843':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187844':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187845':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187846':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187847':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187848':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187849':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187850':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187851':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187852':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187853':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187854':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187855':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187856':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187857':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187858':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400187859':
+ :text: E III Ca 3+9
+ :tag: 852$d
+ :transform:
+'400004541':
+ :text: E III Ca 5
+ :tag: 852$d
+ :transform:
+'400003871':
+ :text: E III DA 1
+ :tag: 852$d
+ :transform:
+'400003866':
+ :text: E III Da 2
+ :tag: 852$d
+ :transform:
+'400003867':
+ :text: E III Da 3
+ :tag: 852$d
+ :transform:
+'400003865':
+ :text: E III Da 5
+ :tag: 852$d
+ :transform:
+'400003869':
+ :text: E III Da 6
+ :tag: 852$d
+ :transform:
+'400003868':
+ :text: E III Da 9
+ :tag: 852$d
+ :transform:
+'400003887':
+ :text: E III Fa 1
+ :tag: 852$d
+ :transform:
+'400003893':
+ :text: E IV Aa 11
+ :tag: 852$d
+ :transform:
+'400003885':
+ :text: E IV Aa 12
+ :tag: 852$d
+ :transform:
+'400003884':
+ :text: E IV Aa 13
+ :tag: 852$d
+ :transform:
+'400003876':
+ :text: E IV Aa 15
+ :tag: 852$d
+ :transform:
+'400003886':
+ :text: E IV Aag
+ :tag: 852$d
+ :transform:
+'400003877':
+ :text: E IV Ab 3
+ :tag: 852$d
+ :transform:
+'400003875':
+ :text: E IV Ab 4
+ :tag: 852$d
+ :transform:
+'400003874':
+ :text: E IV Ad 3
+ :tag: 852$d
+ :transform:
+'400003861':
+ :text: E IV Ba 3
+ :tag: 852$d
+ :transform:
+'400003862':
+ :text: E IV Ba 3
+ :tag: 852$d
+ :transform:
+'400003863':
+ :text: E IV Ba 3
+ :tag: 852$d
+ :transform:
+'400003907':
+ :text: E IV Ca 1
+ :tag: 852$d
+ :transform:
+'400003816':
+ :text: E T Ad 8
+ :tag: 852$d
+ :transform:
+'400003882':
+ :text: E T Ad 8
+ :tag: 852$d
+ :transform:
+'400003883':
+ :text: E T Ad 8
+ :tag: 852$d
+ :transform:
+'400003891':
+ :text: E V Ab 1
+ :tag: 852$d
+ :transform:
+'400003860':
+ :text: E V Bc 1
+ :tag: 852$d
+ :transform:
+'400003864':
+ :text: E V Bc 9
+ :tag: 852$d
+ :transform:
+'400003852':
+ :text: E V Bd 6
+ :tag: 852$d
+ :transform:
+'400003904':
+ :text: E V Ca 1
+ :tag: 852$d
+ :transform:
+'400003911':
+ :text: E V Ca 10
+ :tag: 852$d
+ :transform:
+'400003902':
+ :text: E V Ca 11
+ :tag: 852$d
+ :transform:
+'400003897':
+ :text: E V Ca 12
+ :tag: 852$d
+ :transform:
+'400003906':
+ :text: E V Ca 2
+ :tag: 852$d
+ :transform:
+'400003903':
+ :text: E V Ca 4
+ :tag: 852$d
+ :transform:
+'400003905':
+ :text: E V Ca 5
+ :tag: 852$d
+ :transform:
+'400003898':
+ :text: E V Ca 6
+ :tag: 852$d
+ :transform:
+'400003899':
+ :text: E V Ca 7
+ :tag: 852$d
+ :transform:
+'400003901':
+ :text: E V Ca 8
+ :tag: 852$d
+ :transform:
+'400003900':
+ :text: E V Ca 9
+ :tag: 852$d
+ :transform:
+'400196230':
+ :text: E. 21.
+ :tag: 852$d
+ :transform:
+'410001347':
+ :text: EA 0350
+ :tag: 852$d
+ :transform:
+'410001463':
+ :text: EA 6482
+ :tag: 852$d
+ :transform:
+'410001701':
+ :text: EB2 0126
+ :tag: 852$d
+ :transform:
+'410001699':
+ :text: EB2 0153
+ :tag: 852$d
+ :transform:
+'410001708':
+ :text: EB2 0250
+ :tag: 852$d
+ :transform:
+'410001707':
+ :text: EB2 0250, EB 0261
+ :tag: 852$d
+ :transform:
+'410001709':
+ :text: EB2 0261
+ :tag: 852$d
+ :transform:
+'410001702':
+ :text: EB2 0921
+ :tag: 852$d
+ :transform:
+'410001705':
+ :text: EB2 0947
+ :tag: 852$d
+ :transform:
+'410001706':
+ :text: EB2 0967
+ :tag: 852$d
+ :transform:
+'410001704':
+ :text: EB2 0975
+ :tag: 852$d
+ :transform:
+'410001703':
+ :text: EB2 0992
+ :tag: 852$d
+ :transform:
+'410001710':
+ :text: EB2 1947
+ :tag: 852$d
+ :transform:
+'410001711':
+ :text: EB2 1983, EB2 1986, EB2 2008, EB2 2024, EB2 2040, EB2 2054, EB2 2068, EB2
+ 2086
+ :tag: 852$d
+ :transform:
+'410001700':
+ :text: EB2 5184
+ :tag: 852$d
+ :transform:
+'404000439':
+ :text: F V 7
+ :tag: 852$d
+ :transform:
+'404000355':
+ :text: F.
+ :tag: 852$d
+ :transform:
+'409002867':
+ :text: G 1984
+ :tag: 541$e
+ :transform:
+'409002868':
+ :text: G 1984
+ :tag: 541$e
+ :transform:
+'400100271':
+ :text: G N 23
+ :tag: 852$d
+ :transform:
+'404000356':
+ :text: G.
+ :tag: 852$d
+ :transform:
+'400056273':
+ :text: N.ro 6
+ :tag: 852$d
+ :transform:
+'400056265':
+ :text: MS F 2
+ :tag: 852$d
+ :transform:
+'400100101':
+ :text: Nr. 7
+ :tag: 852$d
+ :transform:
+'400056253':
+ :text: MS H 4
+ :tag: 852$d
+ :transform:
+'400100005':
+ :text: G.N. 17
+ :tag: 852$d
+ :transform:
+'400056267':
+ :text: MS E 2
+ :tag: 852$d
+ :transform:
+'400056258':
+ :text: MS G 1
+ :tag: 852$d
+ :transform:
+'400100035':
+ :text: G.N. 26
+ :tag: 852$d
+ :transform:
+'400056297':
+ :text: MS D 8
+ :tag: 852$d
+ :transform:
+'400056300':
+ :text: MS D 5
+ :tag: 852$d
+ :transform:
+'400100155':
+ :text: G.N. 8
+ :tag: 852$d
+ :transform:
+'400056261':
+ :text: MS F 6
+ :tag: 852$d
+ :transform:
+'400056302':
+ :text: MS D 3
+ :tag: 852$d
+ :transform:
+'407003115':
+ :text: H 01/01/02/1
+ :tag: 852$d
+ :transform:
+'407003116':
+ :text: H 01/01/02/2
+ :tag: 852$d
+ :transform:
+'407003117':
+ :text: H 01/01/02/3
+ :tag: 852$d
+ :transform:
+'407003118':
+ :text: H 01/01/02/4
+ :tag: 852$d
+ :transform:
+'407003119':
+ :text: H 01/01/03/1
+ :tag: 852$d
+ :transform:
+'407003120':
+ :text: H 01/01/03/2
+ :tag: 852$d
+ :transform:
+'407003121':
+ :text: H 01/01/03/3
+ :tag: 852$d
+ :transform:
+'407003122':
+ :text: H 01/01/04/1
+ :tag: 852$d
+ :transform:
+'407003123':
+ :text: H 01/01/04/2
+ :tag: 852$d
+ :transform:
+'407003124':
+ :text: H 01/02/01/1
+ :tag: 852$d
+ :transform:
+'407003125':
+ :text: H 01/02/01/2
+ :tag: 852$d
+ :transform:
+'407003126':
+ :text: H 01/02/02/1
+ :tag: 852$d
+ :transform:
+'407003127':
+ :text: H 01/02/02/2
+ :tag: 852$d
+ :transform:
+'407003128':
+ :text: H 01/02/02/3
+ :tag: 852$d
+ :transform:
+'407003129':
+ :text: H 01/02/02/4
+ :tag: 852$d
+ :transform:
+'407003130':
+ :text: H 01/02/02/4
+ :tag: 852$d
+ :transform:
+'407003131':
+ :text: H 01/02/02/4
+ :tag: 852$d
+ :transform:
+'407003132':
+ :text: H 01/02/03/1
+ :tag: 852$d
+ :transform:
+'407003133':
+ :text: H 01/02/03/2
+ :tag: 852$d
+ :transform:
+'407003134':
+ :text: H 01/02/03/3
+ :tag: 852$d
+ :transform:
+'407003135':
+ :text: H 01/02/03/4
+ :tag: 852$d
+ :transform:
+'407003136':
+ :text: H 01/02/04/1
+ :tag: 852$d
+ :transform:
+'407003137':
+ :text: H 01/02/04/3
+ :tag: 852$d
+ :transform:
+'407003138':
+ :text: H 01/02/04/2
+ :tag: 852$d
+ :transform:
+'407003139':
+ :text: H 01/02/04/3
+ :tag: 852$d
+ :transform:
+'407003140':
+ :text: H 01/02/04/4
+ :tag: 852$d
+ :transform:
+'407003141':
+ :text: H 01/02/04/5
+ :tag: 852$d
+ :transform:
+'407003142':
+ :text: H 01/02/04/6
+ :tag: 852$d
+ :transform:
+'407003143':
+ :text: H 01/02/04/7
+ :tag: 852$d
+ :transform:
+'407003144':
+ :text: H 01/02/04/8
+ :tag: 852$d
+ :transform:
+'407003145':
+ :text: H 01/03/01/1
+ :tag: 852$d
+ :transform:
+'407003146':
+ :text: H 01/03/01/1
+ :tag: 852$d
+ :transform:
+'407003147':
+ :text: H 01/03/01/1
+ :tag: 852$d
+ :transform:
+'407003148':
+ :text: H 01/03/01/1
+ :tag: 852$d
+ :transform:
+'407003149':
+ :text: H 01/03/01/1
+ :tag: 852$d
+ :transform:
+'407003150':
+ :text: H 01/03/01/1
+ :tag: 852$d
+ :transform:
+'407003151':
+ :text: H 01/03/01/1
+ :tag: 852$d
+ :transform:
+'407003152':
+ :text: H 01/03/01/2
+ :tag: 852$d
+ :transform:
+'407003153':
+ :text: H 01/03/01/2
+ :tag: 852$d
+ :transform:
+'407003154':
+ :text: H 01/03/01/2
+ :tag: 852$d
+ :transform:
+'407003155':
+ :text: H 01/03/01/2
+ :tag: 852$d
+ :transform:
+'407003156':
+ :text: H 01/03/01/2
+ :tag: 852$d
+ :transform:
+'407003157':
+ :text: H 01/03/01/2
+ :tag: 852$d
+ :transform:
+'407003158':
+ :text: H 01/03/01/2
+ :tag: 852$d
+ :transform:
+'407003159':
+ :text: H 01/03/01/2
+ :tag: 852$d
+ :transform:
+'407003160':
+ :text: H 01/03/01/3
+ :tag: 852$d
+ :transform:
+'407003161':
+ :text: H 01/03/01/4
+ :tag: 852$d
+ :transform:
+'407003163':
+ :text: H 01/03/01/5
+ :tag: 852$d
+ :transform:
+'407003164':
+ :text: H 01/03/01/5
+ :tag: 852$d
+ :transform:
+'407003165':
+ :text: H 01/03/01/5
+ :tag: 852$d
+ :transform:
+'407003162':
+ :text: H 01/03/01/6
+ :tag: 852$d
+ :transform:
+'407003166':
+ :text: H 01/03/01/7
+ :tag: 852$d
+ :transform:
+'407003167':
+ :text: H 01/03/01/7
+ :tag: 852$d
+ :transform:
+'407003168':
+ :text: H 01/03/01/7
+ :tag: 852$d
+ :transform:
+'407003169':
+ :text: H 01/03/01/8
+ :tag: 852$d
+ :transform:
+'407003170':
+ :text: H 01/03/02/1
+ :tag: 852$d
+ :transform:
+'407003171':
+ :text: H 01/03/02/2
+ :tag: 852$d
+ :transform:
+'407003172':
+ :text: H 01/03/02/3
+ :tag: 852$d
+ :transform:
+'407003173':
+ :text: H 01/03/02/4
+ :tag: 852$d
+ :transform:
+'407003174':
+ :text: H 01/03/02/5
+ :tag: 852$d
+ :transform:
+'407003175':
+ :text: H 01/04/01
+ :tag: 852$d
+ :transform:
+'410000169':
+ :text: H 01/05/01/1
+ :tag: 852$d
+ :transform:
+'410000170':
+ :text: H 01/05/01/2
+ :tag: 852$d
+ :transform:
+'410000171':
+ :text: H 01/05/01/3
+ :tag: 852$d
+ :transform:
+'410000172':
+ :text: H 01/05/01/3
+ :tag: 852$d
+ :transform:
+'410000173':
+ :text: H 01/05/01/3
+ :tag: 852$d
+ :transform:
+'410000174':
+ :text: H 01/05/01/4
+ :tag: 852$d
+ :transform:
+'410000175':
+ :text: H 01/05/01/5
+ :tag: 852$d
+ :transform:
+'410000176':
+ :text: H 01/05/01/5
+ :tag: 852$d
+ :transform:
+'410000177':
+ :text: H 01/05/01/5
+ :tag: 852$d
+ :transform:
+'410000178':
+ :text: H 01/05/01/5
+ :tag: 852$d
+ :transform:
+'410000179':
+ :text: H 01/05/01/5
+ :tag: 852$d
+ :transform:
+'410000180':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000181':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000182':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000206':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000207':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000208':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000209':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000210':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000211':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000212':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000213':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000214':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000215':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000216':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000217':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000218':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000219':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000220':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000221':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000222':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000223':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000224':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000225':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000226':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000227':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000228':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000229':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000230':
+ :text: H 01/05/01/6
+ :tag: 852$d
+ :transform:
+'410000231':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000232':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000233':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000234':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000320':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000321':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000322':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000323':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000324':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000325':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000326':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000327':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000328':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000329':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000330':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000331':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000332':
+ :text: H 01/05/01/7
+ :tag: 852$d
+ :transform:
+'410000162':
+ :text: H 01/05/01/8
+ :tag: 852$d
+ :transform:
+'410000163':
+ :text: H 01/05/01/9
+ :tag: 852$d
+ :transform:
+'410000164':
+ :text: H 01/05/02/1
+ :tag: 852$d
+ :transform:
+'410000333':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000334':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000335':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000336':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000337':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000338':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000339':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000340':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000341':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000342':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000343':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000344':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000345':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000346':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000347':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000348':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000349':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000350':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000351':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000352':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000353':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000354':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000356':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000357':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000358':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000359':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000360':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000361':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000362':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000363':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000516':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000517':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000519':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000521':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000523':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000524':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000525':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000526':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000527':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000528':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000529':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000530':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000531':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000532':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000533':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000534':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000535':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000536':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000537':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000538':
+ :text: H 01/05/02/10
+ :tag: 852$d
+ :transform:
+'410000645':
+ :text: H 01/05/02/11
+ :tag: 852$d
+ :transform:
+'410000646':
+ :text: H 01/05/02/11
+ :tag: 852$d
+ :transform:
+'410000647':
+ :text: H 01/05/02/12
+ :tag: 852$d
+ :transform:
+'410000648':
+ :text: H 01/05/02/13
+ :tag: 852$d
+ :transform:
+'410000649':
+ :text: H 01/05/02/13
+ :tag: 852$d
+ :transform:
+'410000650':
+ :text: H 01/05/02/13
+ :tag: 852$d
+ :transform:
+'410000651':
+ :text: H 01/05/02/13
+ :tag: 852$d
+ :transform:
+'410000652':
+ :text: H 01/05/02/13
+ :tag: 852$d
+ :transform:
+'410000653':
+ :text: H 01/05/02/13
+ :tag: 852$d
+ :transform:
+'410000654':
+ :text: H 01/05/02/13
+ :tag: 852$d
+ :transform:
+'410000655':
+ :text: H 01/05/02/13
+ :tag: 852$d
+ :transform:
+'410000165':
+ :text: H 01/05/02/2a
+ :tag: 852$d
+ :transform:
+'410000166':
+ :text: H 01/05/02/2c
+ :tag: 852$d
+ :transform:
+'410000167':
+ :text: H 01/05/02/2b
+ :tag: 852$d
+ :transform:
+'410000168':
+ :text: H 01/05/02/2c
+ :tag: 852$d
+ :transform:
+'410000635':
+ :text: H 01/05/02/3
+ :tag: 852$d
+ :transform:
+'410000637':
+ :text: H 01/05/02/3
+ :tag: 852$d
+ :transform:
+'410000638':
+ :text: H 01/05/02/3
+ :tag: 852$d
+ :transform:
+'410000639':
+ :text: H 01/05/02/4
+ :tag: 852$d
+ :transform:
+'410000632':
+ :text: H 01/05/02/5
+ :tag: 852$d
+ :transform:
+'410000633':
+ :text: H 01/05/02/6
+ :tag: 852$d
+ :transform:
+'410000634':
+ :text: H 01/05/02/7
+ :tag: 852$d
+ :transform:
+'410000640':
+ :text: H 01/05/02/8
+ :tag: 852$d
+ :transform:
+'410000641':
+ :text: H 01/05/02/8
+ :tag: 852$d
+ :transform:
+'410000642':
+ :text: H 01/05/02/8
+ :tag: 852$d
+ :transform:
+'410000643':
+ :text: H 01/05/02/8
+ :tag: 852$d
+ :transform:
+'410000644':
+ :text: H 01/05/02/8
+ :tag: 852$d
+ :transform:
+'410000656':
+ :text: H 01/06/01/1
+ :tag: 852$d
+ :transform:
+'410000658':
+ :text: H 01/06/01/2
+ :tag: 852$d
+ :transform:
+'410000660':
+ :text: H 01/06/01/3
+ :tag: 852$d
+ :transform:
+'410000663':
+ :text: H 01/06/01/4
+ :tag: 852$d
+ :transform:
+'410000669':
+ :text: H 01/06/01/4
+ :tag: 852$d
+ :transform:
+'410000671':
+ :text: H 01/06/01/4
+ :tag: 852$d
+ :transform:
+'410000672':
+ :text: H 01/06/01/4
+ :tag: 852$d
+ :transform:
+'410000674':
+ :text: H 01/06/01/5
+ :tag: 852$d
+ :transform:
+'410000675':
+ :text: H 01/06/02/1
+ :tag: 852$d
+ :transform:
+'410000676':
+ :text: H 01/06/02/2
+ :tag: 852$d
+ :transform:
+'410000677':
+ :text: H 01/06/03/1
+ :tag: 852$d
+ :transform:
+'410000678':
+ :text: H 01/06/03/2
+ :tag: 852$d
+ :transform:
+'410000679':
+ :text: H 01/06/03/3
+ :tag: 852$d
+ :transform:
+'410000680':
+ :text: H 01/06/03/4
+ :tag: 852$d
+ :transform:
+'407002987':
+ :text: H 01/14/02/1
+ :tag: 852$d
+ :transform:
+'407002988':
+ :text: H 01/14/02/2
+ :tag: 852$d
+ :transform:
+'407002989':
+ :text: H 01/14/02/3
+ :tag: 852$d
+ :transform:
+'407002990':
+ :text: H 01/14/02/4
+ :tag: 852$d
+ :transform:
+'407002991':
+ :text: H 01/14/02/4
+ :tag: 852$d
+ :transform:
+'407002992':
+ :text: H 01/14/02/4
+ :tag: 852$d
+ :transform:
+'407002993':
+ :text: H 01/14/02/4
+ :tag: 852$d
+ :transform:
+'407002994':
+ :text: H 01/14/02/4
+ :tag: 852$d
+ :transform:
+'407002995':
+ :text: H 01/14/02/4
+ :tag: 852$d
+ :transform:
+'407002996':
+ :text: H 01/14/02/5
+ :tag: 852$d
+ :transform:
+'407002997':
+ :text: H 01/14/03/1
+ :tag: 852$d
+ :transform:
+'407002998':
+ :text: H 01/14/03/1
+ :tag: 852$d
+ :transform:
+'407002999':
+ :text: H 01/14/03/1
+ :tag: 852$d
+ :transform:
+'407003000':
+ :text: H 01/14/03/1
+ :tag: 852$d
+ :transform:
+'407003001':
+ :text: H 01/14/03/1
+ :tag: 852$d
+ :transform:
+'407003002':
+ :text: H 01/14/03/1
+ :tag: 852$d
+ :transform:
+'407003003':
+ :text: H 01/14/03/1
+ :tag: 852$d
+ :transform:
+'407003004':
+ :text: H 01/14/03/1
+ :tag: 852$d
+ :transform:
+'407003005':
+ :text: H 01/14/03/1
+ :tag: 852$d
+ :transform:
+'407003006':
+ :text: H 01/14/03/1
+ :tag: 852$d
+ :transform:
+'407003007':
+ :text: H 01/14/03/2
+ :tag: 852$d
+ :transform:
+'407003008':
+ :text: H 01/14/03/3
+ :tag: 852$d
+ :transform:
+'407003009':
+ :text: H 01/14/03/4
+ :tag: 852$d
+ :transform:
+'407003010':
+ :text: H 01/14/03/5
+ :tag: 852$d
+ :transform:
+'407003012':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003013':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003014':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003015':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003016':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003017':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003018':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003019':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003020':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003021':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003022':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003023':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003024':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003025':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003026':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003027':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003028':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003029':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003030':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003031':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003032':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003033':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003034':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003035':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003036':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003037':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003038':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003039':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003040':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003041':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003042':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003043':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003044':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003045':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003046':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003047':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003048':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003049':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003050':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003051':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003052':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003053':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003054':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003055':
+ :text: H 01/14/03/6
+ :tag: 852$d
+ :transform:
+'407003056':
+ :text: H 01/14/04/1
+ :tag: 852$d
+ :transform:
+'407003057':
+ :text: H 01/14/04/2
+ :tag: 852$d
+ :transform:
+'407003058':
+ :text: H 01/14/04/2
+ :tag: 852$d
+ :transform:
+'407003059':
+ :text: H 01/14/04/2
+ :tag: 852$d
+ :transform:
+'407003060':
+ :text: H 01/14/04/2
+ :tag: 852$d
+ :transform:
+'407003061':
+ :text: H 01/14/04/2
+ :tag: 852$d
+ :transform:
+'407003062':
+ :text: H 01/14/04/2
+ :tag: 852$d
+ :transform:
+'407003063':
+ :text: H 01/14/04/2
+ :tag: 852$d
+ :transform:
+'407003064':
+ :text: H 01/14/04/2
+ :tag: 852$d
+ :transform:
+'407003065':
+ :text: H 01/14/04/3
+ :tag: 852$d
+ :transform:
+'407003066':
+ :text: H 01/14/04/3
+ :tag: 852$d
+ :transform:
+'407003067':
+ :text: H 01/14/04/3
+ :tag: 852$d
+ :transform:
+'407003068':
+ :text: H 01/14/04/3
+ :tag: 852$d
+ :transform:
+'407003069':
+ :text: H 01/14/04/4
+ :tag: 852$d
+ :transform:
+'407003070':
+ :text: H 01/14/04/4
+ :tag: 852$d
+ :transform:
+'407003071':
+ :text: H 01/14/04/4
+ :tag: 852$d
+ :transform:
+'407003072':
+ :text: H 01/14/04/4
+ :tag: 852$d
+ :transform:
+'407003073':
+ :text: H 01/14/04/4
+ :tag: 852$d
+ :transform:
+'407003074':
+ :text: H 01/14/04/4
+ :tag: 852$d
+ :transform:
+'407003075':
+ :text: H 01/14/04/4
+ :tag: 852$d
+ :transform:
+'407003076':
+ :text: H 01/15/01/1
+ :tag: 852$d
+ :transform:
+'407003077':
+ :text: H 01/15/01/1
+ :tag: 852$d
+ :transform:
+'407003078':
+ :text: H 01/15/01/1
+ :tag: 852$d
+ :transform:
+'407003079':
+ :text: H 01/15/01/1
+ :tag: 852$d
+ :transform:
+'407003080':
+ :text: H 01/15/01/1
+ :tag: 852$d
+ :transform:
+'407003081':
+ :text: H 01/15/01/1
+ :tag: 852$d
+ :transform:
+'407003113':
+ :text: H 01/15/01/1
+ :tag: 852$d
+ :transform:
+'407003082':
+ :text: H 01/15/01/2
+ :tag: 852$d
+ :transform:
+'407003083':
+ :text: H 01/15/01/2
+ :tag: 852$d
+ :transform:
+'407003084':
+ :text: H 01/15/01/2
+ :tag: 852$d
+ :transform:
+'407003085':
+ :text: H 01/15/01/2
+ :tag: 852$d
+ :transform:
+'407003086':
+ :text: H 01/15/01/2
+ :tag: 852$d
+ :transform:
+'407003087':
+ :text: H 01/15/01/2
+ :tag: 852$d
+ :transform:
+'407003114':
+ :text: H 01/15/01/2
+ :tag: 852$d
+ :transform:
+'407003088':
+ :text: H 01/15/01/3
+ :tag: 852$d
+ :transform:
+'407003089':
+ :text: H 01/15/01/3
+ :tag: 852$d
+ :transform:
+'407003090':
+ :text: H 01/15/01/3
+ :tag: 852$d
+ :transform:
+'407003091':
+ :text: H 01/15/01/3
+ :tag: 852$d
+ :transform:
+'407003092':
+ :text: H 01/15/01/3
+ :tag: 852$d
+ :transform:
+'407003093':
+ :text: H 01/15/01/3
+ :tag: 852$d
+ :transform:
+'407003094':
+ :text: H 01/15/01/3
+ :tag: 852$d
+ :transform:
+'407003096':
+ :text: H 01/15/01/4
+ :tag: 852$d
+ :transform:
+'407003097':
+ :text: H 01/15/01/4
+ :tag: 852$d
+ :transform:
+'407003098':
+ :text: H 01/15/01/4
+ :tag: 852$d
+ :transform:
+'407003099':
+ :text: H 01/15/01/4
+ :tag: 852$d
+ :transform:
+'407003100':
+ :text: H 01/15/01/4
+ :tag: 852$d
+ :transform:
+'407003101':
+ :text: H 01/15/01/4
+ :tag: 852$d
+ :transform:
+'407003102':
+ :text: H 01/15/01/4
+ :tag: 852$d
+ :transform:
+'407003011':
+ :text: H 01/15/01/5
+ :tag: 852$d
+ :transform:
+'407003103':
+ :text: H 01/15/01/6
+ :tag: 852$d
+ :transform:
+'407003104':
+ :text: H 01/15/02/1
+ :tag: 852$d
+ :transform:
+'407003105':
+ :text: H 01/15/02/2
+ :tag: 852$d
+ :transform:
+'407003106':
+ :text: H 01/15/02/3
+ :tag: 852$d
+ :transform:
+'407003107':
+ :text: H 01/15/02/4
+ :tag: 852$d
+ :transform:
+'407003108':
+ :text: H 01/15/02/4
+ :tag: 852$d
+ :transform:
+'407003109':
+ :text: H 01/15/02/4
+ :tag: 852$d
+ :transform:
+'407003110':
+ :text: H 01/15/02/4
+ :tag: 852$d
+ :transform:
+'407003111':
+ :text: H 01/15/02/5
+ :tag: 852$d
+ :transform:
+'402003983':
+ :text: h 6
+ :tag: 852$d
+ :transform:
+'400110845':
+ :text: N|o 66.
+ :tag: 852$d
+ :transform:
+'402004755':
+ :text: Hu. 1.
+ :tag: 852$d
+ :transform:
+'402002998':
+ :text: I 86
+ :tag: 852$d
+ :transform:
+'400003932':
+ :text: I IV Ab 10
+ :tag: 852$d
+ :transform:
+'400102148':
+ :text: i22
+ :tag: 852$d
+ :transform:
+'402006116':
+ :text: II B 1
+ :tag: 852$d
+ :transform:
+'402006115':
+ :text: II B 2
+ :tag: 852$d
+ :transform:
+'402006117':
+ :text: II B 3
+ :tag: 852$d
+ :transform:
+'402006113':
+ :text: II B 32
+ :tag: 852$d
+ :transform:
+'402006114':
+ :text: II B 33
+ :tag: 852$d
+ :transform:
+'402006118':
+ :text: II B 4
+ :tag: 852$d
+ :transform:
+'402006119':
+ :text: II B 5
+ :tag: 852$d
+ :transform:
+'402006112':
+ :text: II B 64
+ :tag: 852$d
+ :transform:
+'400196097':
+ :text: Ms. H.H.IV 182 (49) (Ms.1227)
+ :tag: 852$d
+ :transform:
+'402006108':
+ :text: III A 2
+ :tag: 852$d
+ :transform:
+'402006110':
+ :text: III B 18 [6]
+ :tag: 852$d
+ :transform:
+'402006109':
+ :text: IVA 4 [14]
+ :tag: 852$d
+ :transform:
+'402010901':
+ :text: J 1444 M
+ :tag: 852$d
+ :transform:
+'402010883':
+ :text: J 967 M
+ :tag: 852$d
+ :transform:
+'400003950':
+ :text: J I Cb 13
+ :tag: 852$d
+ :transform:
+'400003952':
+ :text: J I Cd 27
+ :tag: 852$d
+ :transform:
+'400003951':
+ :text: J I Cd 31
+ :tag: 852$d
+ :transform:
+'400003949':
+ :text: J III Aa 19
+ :tag: 852$d
+ :transform:
+'400003947':
+ :text: J III Aa 20
+ :tag: 852$d
+ :transform:
+'400003935':
+ :text: J IX Aa 41
+ :tag: 852$d
+ :transform:
+'400003934':
+ :text: J IX Aa 42
+ :tag: 852$d
+ :transform:
+'400003941':
+ :text: J IX Be 18
+ :tag: 852$d
+ :transform:
+'400003942':
+ :text: J IX Be 19
+ :tag: 852$d
+ :transform:
+'400003943':
+ :text: J IX Be 20
+ :tag: 852$d
+ :transform:
+'400003940':
+ :text: J IX Be 21
+ :tag: 852$d
+ :transform:
+'400003945':
+ :text: J IX C 18
+ :tag: 852$d
+ :transform:
+'400003938':
+ :text: J IX Ca 15
+ :tag: 852$d
+ :transform:
+'400003937':
+ :text: J IX Ca 16 M
+ :tag: 852$d
+ :transform:
+'400003946':
+ :text: J IX Ca 17
+ :tag: 852$d
+ :transform:
+'400004276':
+ :text: J IX Ca 20
+ :tag: 852$d
+ :transform:
+'400003944':
+ :text: J IX Ca 23
+ :tag: 852$d
+ :transform:
+'400003939':
+ :text: J X Ba 19
+ :tag: 852$d
+ :transform:
+'400003936':
+ :text: J X Ba 20
+ :tag: 852$d
+ :transform:
+'400066010':
+ :text: K 101
+ :tag: 852$d
+ :transform:
+'400066017':
+ :text: K 110
+ :tag: 852$d
+ :transform:
+'400066242':
+ :text: K 113
+ :tag: 852$d
+ :transform:
+'400065792':
+ :text: K 124
+ :tag: 852$d
+ :transform:
+'400066086':
+ :text: K 125
+ :tag: 852$d
+ :transform:
+'400066243':
+ :text: K 125
+ :tag: 852$d
+ :transform:
+'400065796':
+ :text: K 126a, b
+ :tag: 852$d
+ :transform:
+'400066389':
+ :text: K 127/A, B, C
+ :tag: 852$d
+ :transform:
+'400065793':
+ :text: K 129
+ :tag: 852$d
+ :transform:
+'400065795':
+ :text: K 130/A, B
+ :tag: 852$d
+ :transform:
+'400066246':
+ :text: K 135
+ :tag: 852$d
+ :transform:
+'400066245':
+ :text: K 139/bis
+ :tag: 852$d
+ :transform:
+'400066247':
+ :text: K 142
+ :tag: 852$d
+ :transform:
+'400066248':
+ :text: K 154 bis
+ :tag: 852$d
+ :transform:
+'400065877':
+ :text: K 18
+ :tag: 852$d
+ :transform:
+'409001611':
+ :text: K 1945 304
+ :tag: 852$d
+ :transform:
+'400065794':
+ :text: K 218/A, B
+ :tag: 852$d
+ :transform:
+'400066011':
+ :text: K 256
+ :tag: 852$d
+ :transform:
+'400066381':
+ :text: K 273
+ :tag: 852$d
+ :transform:
+'400066255':
+ :text: K 296
+ :tag: 852$d
+ :transform:
+'400065876':
+ :text: K 306
+ :tag: 852$d
+ :transform:
+'400102413':
+ :text: K 40, 461
+ :tag: 852$d
+ :transform:
+'409001550':
+ :text: K 40, 473
+ :tag: 852$d
+ :transform:
+'409001414':
+ :text: K 4290
+ :tag: 852$d
+ :transform:
+'400065995':
+ :text: K 43/bis
+ :tag: 852$d
+ :transform:
+'400101995':
+ :text: K k 11 (B)
+ :tag: 852$d
+ :transform:
+'400004547':
+ :text: KM 29
+ :tag: 852$d
+ :transform:
+'400004549':
+ :text: KM 29
+ :tag: 852$d
+ :transform:
+'400004550':
+ :text: KM 29
+ :tag: 852$d
+ :transform:
+'400004551':
+ :text: KM 29
+ :tag: 852$d
+ :transform:
+'400004553':
+ :text: KM 29
+ :tag: 852$d
+ :transform:
+'400004554':
+ :text: KM 29
+ :tag: 852$d
+ :transform:
+'400004555':
+ :text: KM 29
+ :tag: 852$d
+ :transform:
+'400004556':
+ :text: KM 29
+ :tag: 852$d
+ :transform:
+'400004546':
+ :text: KM 54
+ :tag: 852$d
+ :transform:
+'400004558':
+ :text: KM 74
+ :tag: 852$d
+ :transform:
+'400003933':
+ :text: KM 77, 1
+ :tag: 852$d
+ :transform:
+'400187869':
+ :text: KM 77, 1
+ :tag: 852$d
+ :transform:
+'400187870':
+ :text: KM 77, 1
+ :tag: 852$d
+ :transform:
+'400187871':
+ :text: KM 77, 1
+ :tag: 852$d
+ :transform:
+'400187872':
+ :text: KM 77, 1
+ :tag: 852$d
+ :transform:
+'400187873':
+ :text: KM 77, 1
+ :tag: 852$d
+ :transform:
+'400187874':
+ :text: KM 77, 1
+ :tag: 852$d
+ :transform:
+'400187875':
+ :text: KM 77, 1
+ :tag: 852$d
+ :transform:
+'400187876':
+ :text: KM 77, 1
+ :tag: 852$d
+ :transform:
+'400187877':
+ :text: KM 77, 1
+ :tag: 852$d
+ :transform:
+'400004354':
+ :text: KM 77, 10
+ :tag: 852$d
+ :transform:
+'400004355':
+ :text: KM 77, 11
+ :tag: 852$d
+ :transform:
+'400004385':
+ :text: KM 77, 12
+ :tag: 852$d
+ :transform:
+'400004495':
+ :text: KM 77, 14
+ :tag: 852$d
+ :transform:
+'400004084':
+ :text: KM 77, 15
+ :tag: 852$d
+ :transform:
+'400187884':
+ :text: KM 77, 15
+ :tag: 852$d
+ :transform:
+'400187885':
+ :text: KM 77, 15
+ :tag: 852$d
+ :transform:
+'400187886':
+ :text: KM 77, 15
+ :tag: 852$d
+ :transform:
+'400187887':
+ :text: KM 77, 15
+ :tag: 852$d
+ :transform:
+'400187888':
+ :text: KM 77, 15
+ :tag: 852$d
+ :transform:
+'400187889':
+ :text: KM 77, 15
+ :tag: 852$d
+ :transform:
+'400187890':
+ :text: KM 77, 15
+ :tag: 852$d
+ :transform:
+'400187891':
+ :text: KM 77, 15
+ :tag: 852$d
+ :transform:
+'400187892':
+ :text: KM 77, 15
+ :tag: 852$d
+ :transform:
+'400187893':
+ :text: KM 77, 15
+ :tag: 852$d
+ :transform:
+'400003894':
+ :text: KM 77, 2
+ :tag: 852$d
+ :transform:
+'400003833':
+ :text: KM 77, 3
+ :tag: 852$d
+ :transform:
+'400004402':
+ :text: KM 77, 6
+ :tag: 852$d
+ :transform:
+'400004422':
+ :text: KM 77, 7
+ :tag: 852$d
+ :transform:
+'400004511':
+ :text: KM 77, 9
+ :tag: 852$d
+ :transform:
+'402003302':
+ :text: kr I 106-109
+ :tag: 852$d
+ :transform:
+'402003470':
+ :text: kr V 198
+ :tag: 852$d
+ :transform:
+'402003972':
+ :text: kr VI 272
+ :tag: 852$d
+ :transform:
+'402004074':
+ :text: L 132
+ :tag: 852$d
+ :transform:
+'404000361':
+ :text: L.
+ :tag: 852$d
+ :transform:
+'404000362':
+ :text: L.
+ :tag: 852$d
+ :transform:
+'400014666':
+ :text: LB 351237
+ :tag: 852$d
+ :transform:
+'400014669':
+ :text: LB 351386
+ :tag: 852$d
+ :transform:
+'400014673':
+ :text: N|o 37
+ :tag: 852$d
+ :transform:
+'402005776':
+ :text: XI 26 1
+ :tag: 852$d
+ :transform:
+'402005784':
+ :text: XI 26 2
+ :tag: 852$d
+ :transform:
+'402005785':
+ :text: XI 26 2
+ :tag: 852$d
+ :transform:
+'402005786':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005790':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005792':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005794':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005795':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005796':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005797':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005798':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005799':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005800':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005801':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005802':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005803':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005804':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005805':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005806':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005807':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005808':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005809':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005816':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005817':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005818':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005820':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005821':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005822':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005823':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005824':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005825':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005826':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005827':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005828':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005829':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005830':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005831':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005832':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005833':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005834':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005835':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005836':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005837':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005838':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005839':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005840':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005841':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005842':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005843':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005844':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005845':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005846':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005847':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005848':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005849':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005850':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005851':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005852':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005853':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005854':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005855':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005858':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005859':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005860':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005861':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005862':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005863':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005864':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005865':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005866':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005867':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005868':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005869':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005870':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005871':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005872':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005873':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005874':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005875':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005876':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005877':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005878':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005879':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005880':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005881':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005882':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005883':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005884':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005885':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005886':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005887':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005888':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005889':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005890':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005891':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005892':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005893':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005894':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005895':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005896':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005897':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005898':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005899':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005900':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005901':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005902':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005903':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005904':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005905':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005906':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005907':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005908':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005909':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005910':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005911':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005912':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005913':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005914':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005915':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005916':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005917':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005918':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005919':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005920':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005921':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005922':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005923':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005924':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005925':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005926':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005927':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005928':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005929':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005930':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005931':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005932':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005933':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005934':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005935':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005936':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005937':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005938':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005939':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005940':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005941':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005942':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005943':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005944':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005945':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005946':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005947':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005948':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005949':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005950':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005951':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005952':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005953':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005954':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005955':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005956':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005957':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005958':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005959':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005960':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005961':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005962':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005963':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005964':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005965':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005966':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005967':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005968':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005969':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005970':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005971':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005972':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005973':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005974':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005975':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005976':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005977':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005978':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005979':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005980':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005981':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005982':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005983':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005984':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005985':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005986':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005987':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005988':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005989':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005990':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005991':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005992':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005993':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005994':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005995':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005996':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005997':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005998':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402005999':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006000':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006001':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006002':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006003':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006005':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006006':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006007':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006008':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006009':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006010':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006011':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006012':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006014':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006015':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006016':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006017':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006018':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006019':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006020':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006021':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006022':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006023':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006024':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006025':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006039':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006040':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006042':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006043':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006045':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006046':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006047':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006048':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006049':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006050':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006051':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006052':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006064':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006065':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006066':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006067':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'402006068':
+ :text: Legs compositions Jacques Ehrhart
+ :tag: 852$z
+ :transform:
+'400167170':
+ :text: No.111.
+ :tag: 852$d
+ :transform:
+'400102470':
+ :text: Litt. M. N|o 121 d
+ :tag: 852$d
+ :transform:
+'400102471':
+ :text: Litt. M. N|o 121 d
+ :tag: 852$d
+ :transform:
+'400102472':
+ :text: Litt. M. N|o 121 d
+ :tag: 852$d
+ :transform:
+'400102425':
+ :text: Litt. M. N|o 121 m
+ :tag: 852$d
+ :transform:
+'400102515':
+ :text: Litt. M. N|o 121 t
+ :tag: 852$d
+ :transform:
+'400102516':
+ :text: Litt. M. N|o 121 t
+ :tag: 852$d
+ :transform:
+'400102517':
+ :text: Litt. M. N|o 121 t
+ :tag: 852$d
+ :transform:
+'400102530':
+ :text: Litt. M.N|o 121 g
+ :tag: 852$d
+ :transform:
+'400167163':
+ :text: Litt.6. No.108
+ :tag: 852$d
+ :transform:
+'400102186':
+ :text: Litt.M. No. 121p
+ :tag: 852$d
+ :transform:
+'400102128':
+ :text: Litt.M.N.|o 121 e
+ :tag: 852$d
+ :transform:
+'400102129':
+ :text: Litt.M.N|o 121 f
+ :tag: 852$d
+ :transform:
+'400102310':
+ :text: Litt.M.No.121b
+ :tag: 852$d
+ :transform:
+'401000374':
+ :text: M 14|7
+ :tag: 852$d
+ :transform:
+'402004073':
+ :text: M 166
+ :tag: 852$d
+ :transform:
+'404000358':
+ :text: M.
+ :tag: 852$d
+ :transform:
+'400056295':
+ :text: MS B 2
+ :tag: 852$d
+ :transform:
+'400056283':
+ :text: MS B 14
+ :tag: 852$d
+ :transform:
+'400102473':
+ :text: M. N|o 121 i
+ :tag: 852$d
+ :transform:
+'400102474':
+ :text: M. No 121 i
+ :tag: 852$d
+ :transform:
+'400102475':
+ :text: M. No 121 i
+ :tag: 852$d
+ :transform:
+'400102476':
+ :text: M. No 121 i
+ :tag: 852$d
+ :transform:
+'400102477':
+ :text: M. No 121 i
+ :tag: 852$d
+ :transform:
+'400102478':
+ :text: M. No 121 i
+ :tag: 852$d
+ :transform:
+'400102479':
+ :text: M. No 121 i
+ :tag: 852$d
+ :transform:
+'400102480':
+ :text: M. No 121 i
+ :tag: 852$d
+ :transform:
+'400102481':
+ :text: M. No 121 i
+ :tag: 852$d
+ :transform:
+'400102482':
+ :text: M. No 121 i
+ :tag: 852$d
+ :transform:
+'400102483':
+ :text: M. No 121 i
+ :tag: 852$d
+ :transform:
+'400102484':
+ :text: M. No 121 i
+ :tag: 852$d
+ :transform:
+'400102485':
+ :text: M. No 121 i
+ :tag: 852$d
+ :transform:
+'400056296':
+ :text: MS B 1
+ :tag: 852$d
+ :transform:
+'400056292':
+ :text: MS B 6
+ :tag: 852$d
+ :transform:
+'400056293':
+ :text: MS B 5
+ :tag: 852$d
+ :transform:
+'400056289':
+ :text: MS B 9
+ :tag: 852$d
+ :transform:
+'400056254':
+ :text: MS H 3
+ :tag: 852$d
+ :transform:
+'400056287':
+ :text: MS B 11
+ :tag: 852$d
+ :transform:
+'400056278':
+ :text: MS A 18
+ :tag: 852$d
+ :transform:
+'400056280':
+ :text: MS A 20
+ :tag: 852$d
+ :transform:
+'400056291':
+ :text: MS B 7
+ :tag: 852$d
+ :transform:
+'400056288':
+ :text: MS B 10
+ :tag: 852$d
+ :transform:
+'400100082':
+ :text: N. 10
+ :tag: 852$d
+ :transform:
+'400056320':
+ :text: MS D 19
+ :tag: 852$d
+ :transform:
+'400100154':
+ :text: M.N. 46
+ :tag: 852$d
+ :transform:
+'400056290':
+ :text: N. 14
+ :tag: 852$d
+ :transform:
+'400056249':
+ :text: MS H 7
+ :tag: 852$d
+ :transform:
+'400056284':
+ :text: MS B 13
+ :tag: 852$d
+ :transform:
+'402003065':
+ :text: mfg 11
+ :tag: 852$d
+ :transform:
+'402003067':
+ :text: mfg 11 bis 13 bis
+ :tag: 852$d
+ :transform:
+'402003068':
+ :text: mfg 11 bis 13 bis
+ :tag: 852$d
+ :transform:
+'402003069':
+ :text: mfg 11 bis 13 bis
+ :tag: 852$d
+ :transform:
+'402003070':
+ :text: mfg 11 bis 13 bis
+ :tag: 852$d
+ :transform:
+'402003071':
+ :text: mfg 12 [vol. 1]
+ :tag: 852$d
+ :transform:
+'402003066':
+ :text: mfg 13
+ :tag: 852$d
+ :transform:
+'402003080':
+ :text: mfg 14
+ :tag: 852$d
+ :transform:
+'402003081':
+ :text: mfg 14 bis
+ :tag: 852$d
+ :transform:
+'402003082':
+ :text: mfg 15
+ :tag: 852$d
+ :transform:
+'402003083':
+ :text: mfg 15 bis
+ :tag: 852$d
+ :transform:
+'402003084':
+ :text: mfg 15 bis
+ :tag: 852$d
+ :transform:
+'402003077':
+ :text: mfg 16
+ :tag: 852$d
+ :transform:
+'402003078':
+ :text: mfg 16 bis
+ :tag: 852$d
+ :transform:
+'402003079':
+ :text: mfg 16 bis
+ :tag: 852$d
+ :transform:
+'402003085':
+ :text: mfg 17
+ :tag: 852$d
+ :transform:
+'402003086':
+ :text: mfg 17 bis
+ :tag: 852$d
+ :transform:
+'402003087':
+ :text: mfg 17 bis
+ :tag: 852$d
+ :transform:
+'402003072':
+ :text: mfg 18 a
+ :tag: 852$d
+ :transform:
+'402003170':
+ :text: mfg 18 a
+ :tag: 852$d
+ :transform:
+'402003073':
+ :text: mfg 18 b
+ :tag: 852$d
+ :transform:
+'402003074':
+ :text: mfg 18 bis A et B
+ :tag: 852$d
+ :transform:
+'402003075':
+ :text: mfg 18 bis A et B
+ :tag: 852$d
+ :transform:
+'402003076':
+ :text: mfg 18 bis A et B
+ :tag: 852$d
+ :transform:
+'402003088':
+ :text: mfg 19
+ :tag: 852$d
+ :transform:
+'402003089':
+ :text: mfg 19 bis 20 bis
+ :tag: 852$d
+ :transform:
+'402003090':
+ :text: mfg 20
+ :tag: 852$d
+ :transform:
+'402003091':
+ :text: mfg 21
+ :tag: 852$d
+ :transform:
+'402003102':
+ :text: mfg 21 bis
+ :tag: 852$d
+ :transform:
+'402003103':
+ :text: mfg 21 bis
+ :tag: 852$d
+ :transform:
+'402003104':
+ :text: mfg 21 bis
+ :tag: 852$d
+ :transform:
+'402003105':
+ :text: mfg 22 23 et 24
+ :tag: 852$d
+ :transform:
+'402003106':
+ :text: mfg 22 23 et 24
+ :tag: 852$d
+ :transform:
+'402003107':
+ :text: mfg 22 23 et 24
+ :tag: 852$d
+ :transform:
+'402003108':
+ :text: mfg 22 23 et 24
+ :tag: 852$d
+ :transform:
+'402003109':
+ :text: mfg 22 23 et 24
+ :tag: 852$d
+ :transform:
+'402003110':
+ :text: mfg 22 23 et 24
+ :tag: 852$d
+ :transform:
+'400098595':
+ :text: mp C 22
+ :tag: 852$d
+ :transform:
+'400098594':
+ :text: mp C 23
+ :tag: 852$d
+ :transform:
+'400056308':
+ :text: N.ro 2
+ :tag: 852$d
+ :transform:
+'400056270':
+ :text: MS A 10
+ :tag: 852$d
+ :transform:
+'400056271':
+ :text: MS A 11
+ :tag: 852$d
+ :transform:
+'400056272':
+ :text: MS A 12
+ :tag: 852$d
+ :transform:
+'400056275':
+ :text: MS A 14
+ :tag: 852$d
+ :transform:
+'400056274':
+ :text: MS A 15
+ :tag: 852$d
+ :transform:
+'400056276':
+ :text: MS A 16
+ :tag: 852$d
+ :transform:
+'400056277':
+ :text: MS A 17
+ :tag: 852$d
+ :transform:
+'400056309':
+ :text: MS A 2
+ :tag: 852$d
+ :transform:
+'400056281':
+ :text: MS A 21
+ :tag: 852$d
+ :transform:
+'400056312':
+ :text: MS A 5
+ :tag: 852$d
+ :transform:
+'400056313':
+ :text: MS A 6
+ :tag: 852$d
+ :transform:
+'400056314':
+ :text: MS A 7
+ :tag: 852$d
+ :transform:
+'400056269':
+ :text: MS A 9
+ :tag: 852$d
+ :transform:
+'400056285':
+ :text: P.N. 14
+ :tag: 852$d
+ :transform:
+'400056282':
+ :text: MS B 15
+ :tag: 852$d
+ :transform:
+'400056294':
+ :text: MS B 3
+ :tag: 852$d
+ :transform:
+'400056305':
+ :text: P.N. 13
+ :tag: 852$d
+ :transform:
+'400056306':
+ :text: MS C 2
+ :tag: 852$d
+ :transform:
+'400056307':
+ :text: MS C 3
+ :tag: 852$d
+ :transform:
+'400056304':
+ :text: MS D 1
+ :tag: 852$d
+ :transform:
+'400056330':
+ :text: MS D 12
+ :tag: 852$d
+ :transform:
+'400056328':
+ :text: MS D 13
+ :tag: 852$d
+ :transform:
+'400056321':
+ :text: MS D 18
+ :tag: 852$d
+ :transform:
+'400056303':
+ :text: MS D 2
+ :tag: 852$d
+ :transform:
+'400056317':
+ :text: MS D 20
+ :tag: 852$d
+ :transform:
+'400056319':
+ :text: MS D 21
+ :tag: 852$d
+ :transform:
+'400056318':
+ :text: MS D 22
+ :tag: 852$d
+ :transform:
+'400056301':
+ :text: MS D 4
+ :tag: 852$d
+ :transform:
+'400056299':
+ :text: MS D 6
+ :tag: 852$d
+ :transform:
+'400056298':
+ :text: MS D 7
+ :tag: 852$d
+ :transform:
+'400056329':
+ :text: MS D 9
+ :tag: 852$d
+ :transform:
+'400056316':
+ :text: MS E 1
+ :tag: 852$d
+ :transform:
+'400056268':
+ :text: MS E 3
+ :tag: 852$d
+ :transform:
+'400056266':
+ :text: MS E 4
+ :tag: 852$d
+ :transform:
+'400056251':
+ :text: MS F 1
+ :tag: 852$d
+ :transform:
+'400056263':
+ :text: MS F 4
+ :tag: 852$d
+ :transform:
+'400056262':
+ :text: MS F 5
+ :tag: 852$d
+ :transform:
+'400056260':
+ :text: MS F 7
+ :tag: 852$d
+ :transform:
+'400056259':
+ :text: MS F 8
+ :tag: 852$d
+ :transform:
+'402003111':
+ :text: ms F. G. 27
+ :tag: 852$d
+ :transform:
+'400056257':
+ :text: MS G 2
+ :tag: 852$d
+ :transform:
+'400056256':
+ :text: MS H 1
+ :tag: 852$d
+ :transform:
+'400056252':
+ :text: MS H 5
+ :tag: 852$d
+ :transform:
+'400056250':
+ :text: MS H 6
+ :tag: 852$d
+ :transform:
+'400056248':
+ :text: MS J 1a-c
+ :tag: 852$d
+ :transform:
+'400056247':
+ :text: MS J 2
+ :tag: 852$d
+ :transform:
+'400056246':
+ :text: N. 15
+ :tag: 852$d
+ :transform:
+'400150122':
+ :text: Ms M 14|6
+ :tag: 852$d
+ :transform:
+'402009676':
+ :text: Ms-Mq-54-E/2
+ :tag: 852$d
+ :transform:
+'400065306':
+ :text: Ms. 9848
+ :tag: 852$d
+ :transform:
+'402003112':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003113':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003114':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003115':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003116':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003117':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003118':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003119':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003120':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003121':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003122':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003123':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003124':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003125':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003126':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003127':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003128':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003129':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003130':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003131':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003132':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003133':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003134':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003138':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003139':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003140':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003141':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003142':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003143':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'402003144':
+ :text: ms. F. G. 27
+ :tag: 852$d
+ :transform:
+'400196142':
+ :text: N 40.
+ :tag: 852$d
+ :transform:
+'400196148':
+ :text: Ms. H.H.IV 181 (105) (Ms.1186)
+ :tag: 852$d
+ :transform:
+'400196141':
+ :text: N 37.
+ :tag: 852$d
+ :transform:
+'400196130':
+ :text: No 4.
+ :tag: 852$d
+ :transform:
+'400196139':
+ :text: No I
+ :tag: 852$d
+ :transform:
+'400196128':
+ :text: No.2
+ :tag: 852$d
+ :transform:
+'400196129':
+ :text: No 3
+ :tag: 852$d
+ :transform:
+'400196137':
+ :text: No.12.
+ :tag: 852$d
+ :transform:
+'400196134':
+ :text: No.8.
+ :tag: 852$d
+ :transform:
+'400196135':
+ :text: No.9
+ :tag: 852$d
+ :transform:
+'400196136':
+ :text: No.10.
+ :tag: 852$d
+ :transform:
+'400196140':
+ :text: No II.
+ :tag: 852$d
+ :transform:
+'400196133':
+ :text: No. 7.
+ :tag: 852$d
+ :transform:
+'400196143':
+ :text: Ms. H.H.IV 181 (26) (Ms.1171)
+ :tag: 852$d
+ :transform:
+'400196144':
+ :text: Ms. H.H.IV 181 (28) (Ms.1173)
+ :tag: 852$d
+ :transform:
+'400196146':
+ :text: No 48.
+ :tag: 852$d
+ :transform:
+'400196132':
+ :text: No.6.
+ :tag: 852$d
+ :transform:
+'400196145':
+ :text: Ms. H.H.IV 181 (55) (Ms.1176)
+ :tag: 852$d
+ :transform:
+'400196147':
+ :text: Ms. H.H.IV 181 (60) (Ms.1187)
+ :tag: 852$d
+ :transform:
+'400196131':
+ :text: No.5.
+ :tag: 852$d
+ :transform:
+'400196042':
+ :text: Ms. H.H.IV 181 (95) (Ms.1168/69)
+ :tag: 852$d
+ :transform:
+'400196127':
+ :text: No.12.
+ :tag: 852$d
+ :transform:
+'400196043':
+ :text: Ms. H.H.IV 182 (107) (Ms.1192)
+ :tag: 852$d
+ :transform:
+'400196101':
+ :text: No.5.
+ :tag: 852$d
+ :transform:
+'400196044':
+ :text: Ms. H.H.IV 182 (117) (Ms.1193)
+ :tag: 852$d
+ :transform:
+'400196062':
+ :text: Ms. H.H.IV 182 (119) (Ms.1244)
+ :tag: 852$d
+ :transform:
+'400196063':
+ :text: Ms. H.H.IV 182 (119) (Ms.1244)
+ :tag: 852$d
+ :transform:
+'400196064':
+ :text: Ms. H.H.IV 182 (119) (Ms.1244)
+ :tag: 852$d
+ :transform:
+'400196065':
+ :text: Ms. H.H.IV 182 (119) (Ms.1244)
+ :tag: 852$d
+ :transform:
+'400196066':
+ :text: Ms. H.H.IV 182 (119) (Ms.1244)
+ :tag: 852$d
+ :transform:
+'400196067':
+ :text: Ms. H.H.IV 182 (119) (Ms.1244)
+ :tag: 852$d
+ :transform:
+'400196068':
+ :text: Ms. H.H.IV 182 (119) (Ms.1244)
+ :tag: 852$d
+ :transform:
+'400196069':
+ :text: Ms. H.H.IV 182 (119) (Ms.1244)
+ :tag: 852$d
+ :transform:
+'400196070':
+ :text: Ms. H.H.IV 182 (119) (Ms.1244)
+ :tag: 852$d
+ :transform:
+'400196082':
+ :text: Ms. H.H.IV 182 (12) (Ms.1218)
+ :tag: 852$d
+ :transform:
+'400196086':
+ :text: Ms. H.H.IV 182 (122) (Ms.1196)
+ :tag: 852$d
+ :transform:
+'400196087':
+ :text: Ms. H.H.IV 182 (122) (Ms.1196)
+ :tag: 852$d
+ :transform:
+'400196088':
+ :text: Ms. H.H.IV 182 (122) (Ms.1196)
+ :tag: 852$d
+ :transform:
+'400196089':
+ :text: Ms. H.H.IV 182 (122) (Ms.1196)
+ :tag: 852$d
+ :transform:
+'400196090':
+ :text: Ms. H.H.IV 182 (122) (Ms.1196)
+ :tag: 852$d
+ :transform:
+'400196091':
+ :text: Ms. H.H.IV 182 (122) (Ms.1196)
+ :tag: 852$d
+ :transform:
+'400196092':
+ :text: Ms. H.H.IV 182 (122) (Ms.1196)
+ :tag: 852$d
+ :transform:
+'400196093':
+ :text: Ms. H.H.IV 182 (122) (Ms.1196)
+ :tag: 852$d
+ :transform:
+'400196124':
+ :text: No.1. / No.13.
+ :tag: 852$d
+ :transform:
+'400196104':
+ :text: No.47.
+ :tag: 852$d
+ :transform:
+'400196079':
+ :text: Ms. H.H.IV 182 (146) (Ms.1209)
+ :tag: 852$d
+ :transform:
+'400196060':
+ :text: Ms. H.H.IV 182 (149) (Ms.1200)
+ :tag: 852$d
+ :transform:
+'400196047':
+ :text: Ms. H.H.IV 182 (155) (Ms.1198)
+ :tag: 852$d
+ :transform:
+'400196053':
+ :text: Ms. H.H.IV 182 (21) (Ms.1191)
+ :tag: 852$d
+ :transform:
+'400196054':
+ :text: Ms. H.H.IV 182 (21) (Ms.1191)
+ :tag: 852$d
+ :transform:
+'400196055':
+ :text: Ms. H.H.IV 182 (21) (Ms.1191)
+ :tag: 852$d
+ :transform:
+'400196056':
+ :text: Ms. H.H.IV 182 (21) (Ms.1191)
+ :tag: 852$d
+ :transform:
+'400196057':
+ :text: Ms. H.H.IV 182 (21) (Ms.1191)
+ :tag: 852$d
+ :transform:
+'400196058':
+ :text: Ms. H.H.IV 182 (21) (Ms.1191)
+ :tag: 852$d
+ :transform:
+'400196059':
+ :text: Ms. H.H.IV 182 (21) (Ms.1191)
+ :tag: 852$d
+ :transform:
+'400196048':
+ :text: Ms. H.H.IV 182 (23) (Ms.1195)
+ :tag: 852$d
+ :transform:
+'400196049':
+ :text: Ms. H.H.IV 182 (23) (Ms.1195)
+ :tag: 852$d
+ :transform:
+'400196050':
+ :text: Ms. H.H.IV 182 (23) (Ms.1195)
+ :tag: 852$d
+ :transform:
+'400196051':
+ :text: Ms. H.H.IV 182 (23) (Ms.1195)
+ :tag: 852$d
+ :transform:
+'400196052':
+ :text: Ms. H.H.IV 182 (23) (Ms.1195)
+ :tag: 852$d
+ :transform:
+'400196125':
+ :text: No.7.
+ :tag: 852$d
+ :transform:
+'400196100':
+ :text: No.33.
+ :tag: 852$d
+ :transform:
+'400196102':
+ :text: N 46.
+ :tag: 852$d
+ :transform:
+'400196081':
+ :text: Ms. H.H.IV 182 (70) (Ms.1216)
+ :tag: 852$d
+ :transform:
+'400196071':
+ :text: Solo. 1. VIII. R.
+ :tag: 852$d
+ :transform:
+'400196126':
+ :text: Ms. H.H.IV 182 (8) (Ms.1210)
+ :tag: 852$d
+ :transform:
+'400196061':
+ :text: Ms. H.H.IV 182 (83) (Ms.1199)
+ :tag: 852$d
+ :transform:
+'400196083':
+ :text: Ms. H.H.IV 182 (93) (Ms.1219)
+ :tag: 852$d
+ :transform:
+'400196045':
+ :text: Ms. H.H.IV 182 (94) (Ms.1194)
+ :tag: 852$d
+ :transform:
+'400196080':
+ :text: Ms. H.H.IV 182 (Ms.1217)
+ :tag: 852$d
+ :transform:
+'400006786':
+ :text: Ms.468
+ :tag: 852$d
+ :transform:
+'400196001':
+ :text: Ms.545
+ :tag: 852$d
+ :transform:
+'400006389':
+ :text: Ms.546
+ :tag: 852$d
+ :transform:
+'400006390':
+ :text: Ms.547
+ :tag: 852$d
+ :transform:
+'400006811':
+ :text: Ms.563
+ :tag: 852$d
+ :transform:
+'400173981':
+ :text: Ms.563
+ :tag: 852$d
+ :transform:
+'400173982':
+ :text: Ms.563
+ :tag: 852$d
+ :transform:
+'400173983':
+ :text: Ms.563
+ :tag: 852$d
+ :transform:
+'400173984':
+ :text: Ms.563
+ :tag: 852$d
+ :transform:
+'402011100':
+ :text: Msk K 37
+ :tag: 852$d
+ :transform:
+'402011101':
+ :text: Msk K 37
+ :tag: 852$d
+ :transform:
+'409003456':
+ :text: Mss.h.h.LII.16 (32a)
+ :tag: 852$d
+ :transform:
+'409003482':
+ :text: Mss.h.h.LII.16 (33)
+ :tag: 852$d
+ :transform:
+'409003485':
+ :text: Mss.h.h.LII.16 (33)
+ :tag: 852$d
+ :transform:
+'409003486':
+ :text: Mss.h.h.LII.16 (34)
+ :tag: 852$d
+ :transform:
+'409003489':
+ :text: Mss.h.h.LII.16 (35)
+ :tag: 852$d
+ :transform:
+'409003492':
+ :text: Mss.h.h.LII.16 (36)
+ :tag: 852$d
+ :transform:
+'409003495':
+ :text: Mss.h.h.LII.16 (37)
+ :tag: 852$d
+ :transform:
+'409003498':
+ :text: Mss.h.h.LII.16 (38)
+ :tag: 852$d
+ :transform:
+'409003501':
+ :text: Mss.h.h.LII.16 (39)
+ :tag: 852$d
+ :transform:
+'409003523':
+ :text: Mss.h.h.LII.16 (40)
+ :tag: 852$d
+ :transform:
+'409003504':
+ :text: N= 10 i
+ :tag: 852$d
+ :transform:
+'409003508':
+ :text: Mss.h.h.LII.16 (42)
+ :tag: 852$d
+ :transform:
+'409003509':
+ :text: Mss.h.h.LII.16 (43)
+ :tag: 852$d
+ :transform:
+'409003516':
+ :text: N= 8-h
+ :tag: 852$d
+ :transform:
+'409003522':
+ :text: Mss.h.h.LII.16 (46)
+ :tag: 852$d
+ :transform:
+'409003586':
+ :text: Mss.h.h.LII.16 (47)
+ :tag: 852$d
+ :transform:
+'409003569':
+ :text: Mss.h.h.LII.16 (48)
+ :tag: 852$d
+ :transform:
+'409003559':
+ :text: Mss.h.h.LII.16 (49)
+ :tag: 852$d
+ :transform:
+'409003520':
+ :text: Mss.h.h.LII.16 (50)
+ :tag: 852$d
+ :transform:
+'409003521':
+ :text: N|o 8.
+ :tag: 852$d
+ :transform:
+'400196149':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196150':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196151':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196152':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196153':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196154':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196155':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196156':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196157':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196158':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196159':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196160':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196161':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196162':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196163':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196164':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196165':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196166':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196167':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196168':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196169':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196170':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196171':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196172':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196173':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196174':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196175':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196176':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196177':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196178':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196179':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196180':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400196181':
+ :text: Mss.h.h.XL (Archiv)
+ :tag: 852$d
+ :transform:
+'400006840':
+ :text: Musibbibl.A 29
+ :tag: 852$d
+ :transform:
+'400113040':
+ :text: Musibibl.C 23
+ :tag: 852$d
+ :transform:
+'400006834':
+ :text: Musikbibl. A 17
+ :tag: 852$d
+ :transform:
+'408003901':
+ :text: Musikbibl. Anon 115
+ :tag: 852$d
+ :transform:
+'408004511':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004512':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004513':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004514':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004515':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004516':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004517':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004518':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004519':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004520':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004521':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004522':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004523':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004524':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004525':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004526':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004527':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004529':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004530':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004531':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004532':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004533':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004534':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004535':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004536':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004537':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'408004538':
+ :text: Musikbibl. Anon 118
+ :tag: 852$d
+ :transform:
+'400112844':
+ :text: Musikbibl. B 27
+ :tag: 852$d
+ :transform:
+'400007082':
+ :text: Musikbibl. S 66
+ :tag: 852$d
+ :transform:
+'400006831':
+ :text: Musikbibl.A 14
+ :tag: 852$d
+ :transform:
+'400006832':
+ :text: Musikbibl.A 15
+ :tag: 852$d
+ :transform:
+'400006833':
+ :text: Musikbibl.Anon 232
+ :tag: 852$d
+ :transform:
+'400006835':
+ :text: Musikbibl.A 18
+ :tag: 852$d
+ :transform:
+'400006864':
+ :text: Musikbibl.A 24
+ :tag: 852$d
+ :transform:
+'400006836':
+ :text: Musikbibl.A 25
+ :tag: 852$d
+ :transform:
+'400006837':
+ :text: Musikbibl.A 26
+ :tag: 852$d
+ :transform:
+'400006839':
+ :text: Musikbibl.A 28
+ :tag: 852$d
+ :transform:
+'400006863':
+ :text: Musikbibl.A 31
+ :tag: 852$d
+ :transform:
+'400006838':
+ :text: Musikbibl.A 34
+ :tag: 852$d
+ :transform:
+'400006841':
+ :text: Musikbibl.A 35
+ :tag: 852$d
+ :transform:
+'400112819':
+ :text: Musikbibl.Anon 10
+ :tag: 852$d
+ :transform:
+'400112820':
+ :text: Musikbibl.Anon 10
+ :tag: 852$d
+ :transform:
+'400112821':
+ :text: Musikbibl.Anon 10
+ :tag: 852$d
+ :transform:
+'400007225':
+ :text: Musikbibl.Anon 100
+ :tag: 852$d
+ :transform:
+'400007226':
+ :text: Musikbibl.Anon 101
+ :tag: 852$d
+ :transform:
+'400007227':
+ :text: Musikbibl.Anon 102
+ :tag: 852$d
+ :transform:
+'400112046':
+ :text: Musikbibl.Anon 103
+ :tag: 852$d
+ :transform:
+'400112727':
+ :text: Musikbibl.Anon 104
+ :tag: 852$d
+ :transform:
+'400112119':
+ :text: Musikbibl.Anon 105
+ :tag: 852$d
+ :transform:
+'400112170':
+ :text: Musikbibl.Anon 107
+ :tag: 852$d
+ :transform:
+'400112171':
+ :text: Musikbibl.Anon 107
+ :tag: 852$d
+ :transform:
+'400112172':
+ :text: Musikbibl.Anon 107
+ :tag: 852$d
+ :transform:
+'408003660':
+ :text: Musikbibl.Anon 11
+ :tag: 852$d
+ :transform:
+'400007236':
+ :text: Musikbibl.Anon 111
+ :tag: 852$d
+ :transform:
+'400193106':
+ :text: Musikbibl.Anon 112|1
+ :tag: 852$d
+ :transform:
+'400007237':
+ :text: Musikbibl.Anon 112|1|-|8
+ :tag: 852$d
+ :transform:
+'400193107':
+ :text: Musikbibl.Anon 112|2
+ :tag: 852$d
+ :transform:
+'400193108':
+ :text: Musikbibl.Anon 112|3
+ :tag: 852$d
+ :transform:
+'400193109':
+ :text: Musikbibl.Anon 112|4
+ :tag: 852$d
+ :transform:
+'400193110':
+ :text: Musikbibl.Anon 112|5
+ :tag: 852$d
+ :transform:
+'400193111':
+ :text: Musikbibl.Anon 112|6
+ :tag: 852$d
+ :transform:
+'400193112':
+ :text: Musikbibl.Anon 112|7
+ :tag: 852$d
+ :transform:
+'400193113':
+ :text: Musikbibl.Anon 112|8
+ :tag: 852$d
+ :transform:
+'400004953':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'400007238':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'400007239':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'400007240':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'400007241':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'400007242':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004489':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004490':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004491':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004492':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004493':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004494':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004495':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004496':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004497':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004498':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004499':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004500':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004501':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004502':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004503':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004504':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004505':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004506':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004507':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004508':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004509':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'408004510':
+ :text: Musikbibl.Anon 114
+ :tag: 852$d
+ :transform:
+'400007243':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'400007244':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003808':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003809':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003810':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003811':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003812':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003813':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003814':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003815':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003816':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003817':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003818':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003819':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003820':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003821':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003822':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003823':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003824':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003825':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003826':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003827':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003828':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003829':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003830':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003831':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003832':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003833':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003834':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003835':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003836':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003837':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003838':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003839':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003840':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003841':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003842':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003843':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003844':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003845':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003846':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003847':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003848':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003849':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003850':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003851':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003852':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003853':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003854':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003855':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003856':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003857':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003858':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003859':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003860':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003861':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003862':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003863':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003864':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003865':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003866':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003867':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003868':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003869':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003870':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003871':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003872':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003873':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003874':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003875':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003876':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003877':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003878':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003879':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003880':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003881':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003882':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003883':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003884':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003885':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003886':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003887':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003888':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003889':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003890':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003891':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003892':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003893':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003894':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003895':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003896':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003897':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003898':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003899':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003900':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003902':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003903':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003904':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003905':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003906':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003907':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003908':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003909':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003910':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003911':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003912':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003913':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003914':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003915':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003916':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003917':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003918':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003919':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003920':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003921':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003922':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003923':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003924':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003925':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003926':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003927':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003928':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003929':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003930':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003931':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003932':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003933':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003934':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003935':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003936':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003937':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003938':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003939':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003940':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003941':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003942':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003943':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003944':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003945':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003946':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003947':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003948':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003949':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003950':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003951':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003952':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003953':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003954':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003955':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003956':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003957':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003958':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003959':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003960':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003961':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003962':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003963':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003964':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003965':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003966':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003967':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003968':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003969':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003970':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003971':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003972':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003973':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003974':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003975':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003976':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003977':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003978':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003979':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003980':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003981':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003982':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003983':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003984':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003985':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003986':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003987':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003988':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003989':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003990':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003991':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003992':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003993':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003994':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003995':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003996':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003997':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003998':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408003999':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004000':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004001':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004002':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004003':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004004':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004005':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004006':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004007':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004008':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004009':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004010':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004011':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004012':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004013':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004014':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004015':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004016':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004017':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004018':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004019':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'408004020':
+ :text: Musikbibl.Anon 115
+ :tag: 852$d
+ :transform:
+'400007246':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'400007247':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'400007248':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'400219391':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'400219392':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'400219393':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'400219394':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'400219395':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004133':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004134':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004135':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004136':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004137':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004138':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004139':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004140':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004141':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004142':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004143':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004144':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004145':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004146':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004147':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004148':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'408004149':
+ :text: Musikbibl.Anon 116
+ :tag: 852$d
+ :transform:
+'400007250':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400007251':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400007252':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400007254':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400007256':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400007258':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400193114':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400193115':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400193116':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400193117':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400193118':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400193119':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400193120':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400193121':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400193122':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'408004379':
+ :text: Musikbibl.Anon 117
+ :tag: 852$d
+ :transform:
+'400007259':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007260':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007261':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007262':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007263':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007264':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007265':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007266':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007267':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007268':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007269':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007270':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007271':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400007272':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400193123':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400193124':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400193125':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400193126':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400193127':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400193128':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400193129':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400193130':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400193131':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400193132':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'408004528':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'408004539':
+ :text: Musikbibl.Anon 118
+ :tag: 852$d
+ :transform:
+'400112824':
+ :text: Musikbibl.Anon 119
+ :tag: 852$d
+ :transform:
+'400007134':
+ :text: Musikbibl.Anon 12
+ :tag: 852$d
+ :transform:
+'400111862':
+ :text: Musikbibl.Anon 120
+ :tag: 852$d
+ :transform:
+'400111860':
+ :text: Musikbibl.Anon 121
+ :tag: 852$d
+ :transform:
+'408003302':
+ :text: Musikbibl.Anon 122
+ :tag: 852$d
+ :transform:
+'400112918':
+ :text: Musikbibl.Anon 123
+ :tag: 852$d
+ :transform:
+'400112919':
+ :text: Musikbibl.Anon 123
+ :tag: 852$d
+ :transform:
+'400112920':
+ :text: Musikbibl.Anon 123
+ :tag: 852$d
+ :transform:
+'400007278':
+ :text: Musikbibl.Anon 124 (Ms.7039)
+ :tag: 852$d
+ :transform:
+'408002816':
+ :text: Musikbibl.Anon 125
+ :tag: 852$d
+ :transform:
+'400007280':
+ :text: Musikbibl.Anon 127
+ :tag: 852$d
+ :transform:
+'400112757':
+ :text: Musikbibl.Anon 128
+ :tag: 852$d
+ :transform:
+'400007282':
+ :text: Musikbibl.Anon 129
+ :tag: 852$d
+ :transform:
+'400219396':
+ :text: Musikbibl.Anon 129
+ :tag: 852$d
+ :transform:
+'400219397':
+ :text: Musikbibl.Anon 129
+ :tag: 852$d
+ :transform:
+'400219398':
+ :text: Musikbibl.Anon 129
+ :tag: 852$d
+ :transform:
+'400219399':
+ :text: Musikbibl.Anon 129
+ :tag: 852$d
+ :transform:
+'400007135':
+ :text: Musikbibl.Anon 13 (Ms.6927)
+ :tag: 852$d
+ :transform:
+'400112780':
+ :text: Musikbibl.Anon 130
+ :tag: 852$d
+ :transform:
+'400112781':
+ :text: Musikbibl.Anon 130
+ :tag: 852$d
+ :transform:
+'400112782':
+ :text: Musikbibl.Anon 130
+ :tag: 852$d
+ :transform:
+'400007284':
+ :text: Musikbibl.Anon 131
+ :tag: 852$d
+ :transform:
+'400111869':
+ :text: Musikbibl.Anon 132
+ :tag: 852$d
+ :transform:
+'408002886':
+ :text: Musikbibl.Anon 133
+ :tag: 852$d
+ :transform:
+'400007287':
+ :text: Musikbibl.Anon 134
+ :tag: 852$d
+ :transform:
+'400112169':
+ :text: Musikbibl.Anon 135
+ :tag: 852$d
+ :transform:
+'400007289':
+ :text: Musikbibl.Anon 136
+ :tag: 852$d
+ :transform:
+'400007290':
+ :text: Musikbibl.Anon 137
+ :tag: 852$d
+ :transform:
+'400007291':
+ :text: Musikbibl.Anon 138
+ :tag: 852$d
+ :transform:
+'400112783':
+ :text: Musikbibl.Anon 139
+ :tag: 852$d
+ :transform:
+'400007136':
+ :text: Musikbibl.Anon 14
+ :tag: 852$d
+ :transform:
+'400007293':
+ :text: Musikbibl.Anon 140
+ :tag: 852$d
+ :transform:
+'400112823':
+ :text: Musikbibl.Anon 141
+ :tag: 852$d
+ :transform:
+'400007430':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400007431':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400007432':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400193154':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400193155':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400193156':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400193157':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400193158':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400193159':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400193160':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400193161':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400193162':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400193163':
+ :text: Musikbibl.Anon 142
+ :tag: 852$d
+ :transform:
+'400007295':
+ :text: Musikbibl.Anon 143
+ :tag: 852$d
+ :transform:
+'400193138':
+ :text: Musikbibl.Anon 143
+ :tag: 852$d
+ :transform:
+'400193139':
+ :text: Musikbibl.Anon 143
+ :tag: 852$d
+ :transform:
+'408003717':
+ :text: Musikbibl.Anon 143
+ :tag: 852$d
+ :transform:
+'400007297':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400111472':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400111473':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400111474':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400111475':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400111476':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400111477':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400111478':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400193141':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400193142':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400193143':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400193144':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400193145':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400193146':
+ :text: Musikbibl.Anon 145
+ :tag: 852$d
+ :transform:
+'400007298':
+ :text: Musikbibl.Anon 146
+ :tag: 852$d
+ :transform:
+'400111871':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400111872':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400111873':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400111874':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400111875':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400111876':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400111877':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400111878':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400111879':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400111880':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400111881':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400111882':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400111883':
+ :text: Musikbibl.Anon 147
+ :tag: 852$d
+ :transform:
+'400112836':
+ :text: Musikbibl.Anon 148
+ :tag: 852$d
+ :transform:
+'400007300':
+ :text: Musikbibl.Anon 149
+ :tag: 852$d
+ :transform:
+'400112047':
+ :text: Musikbibl.Anon 15
+ :tag: 852$d
+ :transform:
+'400007301':
+ :text: Musikbibl.Anon 150
+ :tag: 852$d
+ :transform:
+'400007302':
+ :text: Musikbibl.Anon 151
+ :tag: 852$d
+ :transform:
+'400007303':
+ :text: Musikbibl.Anon 152
+ :tag: 852$d
+ :transform:
+'400112012':
+ :text: Musikbibl.Anon 153
+ :tag: 852$d
+ :transform:
+'400007305':
+ :text: Musikbibl.Anon 154
+ :tag: 852$d
+ :transform:
+'400007306':
+ :text: Musikbibl.Anon 155
+ :tag: 852$d
+ :transform:
+'400111900':
+ :text: Musikbibl.Anon 156
+ :tag: 852$d
+ :transform:
+'400111889':
+ :text: Musikbibl.Anon 157
+ :tag: 852$d
+ :transform:
+'400007309':
+ :text: Musikbibl.Anon 158
+ :tag: 852$d
+ :transform:
+'408002934':
+ :text: Musikbibl.Anon 159
+ :tag: 852$d
+ :transform:
+'400007138':
+ :text: Musikbibl.Anon 16
+ :tag: 852$d
+ :transform:
+'400111839':
+ :text: Musikbibl.Anon 160
+ :tag: 852$d
+ :transform:
+'400007313':
+ :text: Musikbibl.Anon 162
+ :tag: 852$d
+ :transform:
+'400112035':
+ :text: Musikbibl.Anon 163
+ :tag: 852$d
+ :transform:
+'400113024':
+ :text: Musikbibl.Anon 164
+ :tag: 852$d
+ :transform:
+'408003529':
+ :text: Musikbibl.Anon 165
+ :tag: 852$d
+ :transform:
+'400113010':
+ :text: Musikbibl.Anon 166
+ :tag: 852$d
+ :transform:
+'400006961':
+ :text: Musikbibl.M 11
+ :tag: 852$d
+ :transform:
+'400111832':
+ :text: Musikbibl.Anon 168
+ :tag: 852$d
+ :transform:
+'400112768':
+ :text: Musikbibl.Anon 169
+ :tag: 852$d
+ :transform:
+'400007139':
+ :text: Musikbibl.Anon 17
+ :tag: 852$d
+ :transform:
+'400112900':
+ :text: Musikbibl.Anon 170
+ :tag: 852$d
+ :transform:
+'400007323':
+ :text: Musikbibl.Anon 172
+ :tag: 852$d
+ :transform:
+'400112036':
+ :text: Musikbibl.Anon 173
+ :tag: 852$d
+ :transform:
+'400113031':
+ :text: Musikbibl.Anon 174
+ :tag: 852$d
+ :transform:
+'408003533':
+ :text: Musikbibl.Anon 175
+ :tag: 852$d
+ :transform:
+'400007327':
+ :text: Musikbibl.Anon 176
+ :tag: 852$d
+ :transform:
+'400007328':
+ :text: Musikbibl.Anon 177
+ :tag: 852$d
+ :transform:
+'400007329':
+ :text: Musikbibl.Anon 178
+ :tag: 852$d
+ :transform:
+'400007330':
+ :text: Musikbibl.Anon 179
+ :tag: 852$d
+ :transform:
+'400112033':
+ :text: Musikbibl.Anon 18
+ :tag: 852$d
+ :transform:
+'400007331':
+ :text: Musikbibl.Anon 180
+ :tag: 852$d
+ :transform:
+'408003638':
+ :text: Musikbibl.Anon 181
+ :tag: 852$d
+ :transform:
+'400007333':
+ :text: Musikbibl.Anon 182
+ :tag: 852$d
+ :transform:
+'400193147':
+ :text: Musikbibl.Anon 182
+ :tag: 852$d
+ :transform:
+'400193148':
+ :text: Musikbibl.Anon 182
+ :tag: 852$d
+ :transform:
+'400007334':
+ :text: Musikbibl.Anon 183
+ :tag: 852$d
+ :transform:
+'400193149':
+ :text: Musikbibl.Anon 183
+ :tag: 852$d
+ :transform:
+'400193150':
+ :text: Musikbibl.Anon 183
+ :tag: 852$d
+ :transform:
+'400007335':
+ :text: Musikbibl.Anon 184
+ :tag: 852$d
+ :transform:
+'400007336':
+ :text: Musikbibl.Anon 185
+ :tag: 852$d
+ :transform:
+'400112899':
+ :text: Musikbibl.Anon 186
+ :tag: 852$d
+ :transform:
+'400007338':
+ :text: Musikbibl.Anon 187
+ :tag: 852$d
+ :transform:
+'408003438':
+ :text: Musikbibl.Anon 188
+ :tag: 852$d
+ :transform:
+'400007340':
+ :text: Musikbibl.Anon 189
+ :tag: 852$d
+ :transform:
+'400112115':
+ :text: Musikbibl.Anon 19
+ :tag: 852$d
+ :transform:
+'400007341':
+ :text: Musikbibl.Anon 190
+ :tag: 852$d
+ :transform:
+'400007342':
+ :text: Musikbibl.Anon 191
+ :tag: 852$d
+ :transform:
+'400112008':
+ :text: Musikbibl.Anon 192
+ :tag: 852$d
+ :transform:
+'400112011':
+ :text: Musikbibl.Anon 193
+ :tag: 852$d
+ :transform:
+'400112071':
+ :text: Musikbibl.Anon 194
+ :tag: 852$d
+ :transform:
+'400007347':
+ :text: Musikbibl.Anon 195,1
+ :tag: 852$d
+ :transform:
+'400007346':
+ :text: Musikbibl.Anon 195,1-11
+ :tag: 852$d
+ :transform:
+'408005017':
+ :text: Musikbibl.Anon 195,10
+ :tag: 852$d
+ :transform:
+'408005018':
+ :text: Musikbibl.Anon 195,11
+ :tag: 852$d
+ :transform:
+'400007348':
+ :text: Musikbibl.Anon 195,2
+ :tag: 852$d
+ :transform:
+'408005013':
+ :text: Musikbibl.Anon 195,3
+ :tag: 852$d
+ :transform:
+'400007350':
+ :text: Musikbibl.Anon 195,4
+ :tag: 852$d
+ :transform:
+'408005014':
+ :text: Musikbibl.Anon 195,5
+ :tag: 852$d
+ :transform:
+'408005015':
+ :text: Musikbibl.Anon 195,6
+ :tag: 852$d
+ :transform:
+'400007353':
+ :text: Musikbibl.Anon 195,7
+ :tag: 852$d
+ :transform:
+'400007354':
+ :text: Musikbibl.Anon 195,8
+ :tag: 852$d
+ :transform:
+'408005016':
+ :text: Musikbibl.Anon 195,9
+ :tag: 852$d
+ :transform:
+'400111891':
+ :text: Musikbibl.Anon 196
+ :tag: 852$d
+ :transform:
+'400111901':
+ :text: Musikbibl.Anon 197
+ :tag: 852$d
+ :transform:
+'400007360':
+ :text: Musikbibl.Anon 198
+ :tag: 852$d
+ :transform:
+'400112834':
+ :text: Musikbibl.Anon 199
+ :tag: 852$d
+ :transform:
+'400007142':
+ :text: Musikbibl.Anon 20
+ :tag: 852$d
+ :transform:
+'400112898':
+ :text: Musikbibl.Anon 200
+ :tag: 852$d
+ :transform:
+'400007363':
+ :text: Musikbibl.Anon 201
+ :tag: 852$d
+ :transform:
+'400007364':
+ :text: Musikbibl.Anon 202
+ :tag: 852$d
+ :transform:
+'408003211':
+ :text: Musikbibl.Anon 203
+ :tag: 852$d
+ :transform:
+'400007366':
+ :text: Musikbibl.Anon 204
+ :tag: 852$d
+ :transform:
+'400113064':
+ :text: Musikbibl.Anon 205
+ :tag: 852$d
+ :transform:
+'400007368':
+ :text: Musikbibl.Anon 206
+ :tag: 852$d
+ :transform:
+'400007369':
+ :text: Musikbibl.Anon 207
+ :tag: 852$d
+ :transform:
+'400007370':
+ :text: Musikbibl.Anon 208
+ :tag: 852$d
+ :transform:
+'400007371':
+ :text: Musikbibl.Anon 209
+ :tag: 852$d
+ :transform:
+'400112728':
+ :text: Musikbibl.Anon 21
+ :tag: 852$d
+ :transform:
+'400007372':
+ :text: Musikbibl.Anon 210
+ :tag: 852$d
+ :transform:
+'400007373':
+ :text: Musikbibl.Anon 211
+ :tag: 852$d
+ :transform:
+'400007374':
+ :text: Musikbibl.Anon 212
+ :tag: 852$d
+ :transform:
+'400007375':
+ :text: Musikbibl.Anon 213
+ :tag: 852$d
+ :transform:
+'400007377':
+ :text: Musikbibl.Anon 214,1
+ :tag: 852$d
+ :transform:
+'400007376':
+ :text: Musikbibl.Anon 214,1-16
+ :tag: 852$d
+ :transform:
+'400007386':
+ :text: Musikbibl.Anon 214,10
+ :tag: 852$d
+ :transform:
+'400007387':
+ :text: Musikbibl.Anon 214,11
+ :tag: 852$d
+ :transform:
+'400007388':
+ :text: Musikbibl.Anon 214,12
+ :tag: 852$d
+ :transform:
+'400007389':
+ :text: Musikbibl.Anon 214,13
+ :tag: 852$d
+ :transform:
+'400007390':
+ :text: Musikbibl.Anon 214,14
+ :tag: 852$d
+ :transform:
+'400007391':
+ :text: Musikbibl.Anon 214,15
+ :tag: 852$d
+ :transform:
+'400007392':
+ :text: Musikbibl.Anon 214,16
+ :tag: 852$d
+ :transform:
+'400007378':
+ :text: Musikbibl.Anon 214,2
+ :tag: 852$d
+ :transform:
+'400007379':
+ :text: Musikbibl.Anon 214,3
+ :tag: 852$d
+ :transform:
+'400007380':
+ :text: Musikbibl.Anon 214,4
+ :tag: 852$d
+ :transform:
+'400007381':
+ :text: Musikbibl.Anon 214,5
+ :tag: 852$d
+ :transform:
+'400007382':
+ :text: Musikbibl.Anon 214,6
+ :tag: 852$d
+ :transform:
+'400007383':
+ :text: Musikbibl.Anon 214,7
+ :tag: 852$d
+ :transform:
+'400007384':
+ :text: Musikbibl.Anon 214,8
+ :tag: 852$d
+ :transform:
+'400007385':
+ :text: Musikbibl.Anon 214,9
+ :tag: 852$d
+ :transform:
+'400007393':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400007394':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400007395':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400007398':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400007399':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400007400':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400007401':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219406':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219407':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219408':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219409':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219410':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219411':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219412':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219413':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219414':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219415':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219416':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219417':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219418':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219419':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219420':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219421':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219422':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400219423':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'408004362':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'408004363':
+ :text: Musikbibl.Anon 215
+ :tag: 852$d
+ :transform:
+'400112414':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112415':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112416':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112417':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112418':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112419':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112420':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112421':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112422':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112423':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112424':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112425':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112426':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112427':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112428':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112429':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112430':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112432':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112433':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112434':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112435':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112436':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112437':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112438':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112439':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112440':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112441':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112442':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112443':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112444':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112445':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112446':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112447':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112448':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112449':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112450':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112451':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112452':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112453':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112454':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112455':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112456':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112457':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112458':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112459':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112460':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112461':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112462':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112463':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112464':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112465':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112466':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112467':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112468':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112469':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112470':
+ :text: Musikbibl.Anon 216
+ :tag: 852$d
+ :transform:
+'400112211':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112212':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112213':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112214':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112215':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112216':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112217':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112218':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112219':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112220':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112221':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112222':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112223':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112224':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112225':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112226':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112227':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112228':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112229':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112230':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112231':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112232':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112233':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112234':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112235':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112236':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112237':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112238':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112239':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112240':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112241':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112242':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112243':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112244':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112245':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112246':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112247':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112248':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112249':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112250':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112251':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112252':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112253':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112254':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112255':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112256':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112257':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112258':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112259':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112260':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112261':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112262':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112263':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112264':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112265':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112266':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112267':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112268':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112269':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112270':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112271':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112272':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112273':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112274':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112275':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112276':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112277':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112278':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112279':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112280':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112281':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112282':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112283':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112284':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112285':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112286':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112287':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112288':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112289':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112290':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112291':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112292':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112293':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112294':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112295':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112296':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112297':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112298':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112299':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112300':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112301':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112302':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112303':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112304':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112305':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112306':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112307':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112308':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112309':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112310':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112311':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112312':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112313':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112314':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112315':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112316':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112317':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112318':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112319':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112320':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112321':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112322':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112323':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112324':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112325':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112326':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112327':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112328':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112329':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112330':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112331':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112332':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112333':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112334':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112335':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112336':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112337':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112338':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112339':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112340':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112341':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112342':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112343':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112344':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112345':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112346':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112347':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112348':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112349':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112350':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112351':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112352':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112353':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112354':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112355':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112356':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112357':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112358':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112359':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112360':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112361':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112362':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112363':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112364':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112365':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112366':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112367':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112368':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112369':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112370':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112371':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112372':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112373':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112374':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112375':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112376':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112377':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112378':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112379':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112380':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112381':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112382':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112383':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112384':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112385':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112386':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112387':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112388':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112389':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112390':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112391':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112392':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112393':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112394':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112395':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400112396':
+ :text: Musikbibl.Anon 217
+ :tag: 852$d
+ :transform:
+'400111907':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111908':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111909':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111910':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111911':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111912':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111913':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111914':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111915':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111916':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111917':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111918':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111919':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111920':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111921':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111922':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111923':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111924':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111925':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111926':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111927':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111928':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111929':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111930':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111931':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111932':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111933':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111934':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111935':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111936':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111937':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111938':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111939':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111940':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111941':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111942':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111943':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111944':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111945':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111946':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111947':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111948':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111949':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111950':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111951':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111952':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111953':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111954':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111955':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111956':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111957':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111958':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111959':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111960':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111961':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111962':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111963':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111964':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111965':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111966':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111967':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111968':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111969':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111970':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111971':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111972':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111973':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111974':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111975':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111976':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111977':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111978':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111979':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111980':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111981':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111982':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111983':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111984':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111985':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111986':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111987':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111988':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111989':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111990':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111991':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111992':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111993':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111994':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111995':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111996':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111997':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111998':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400111999':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400112000':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400112001':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400112002':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400112003':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400112004':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400112005':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400112006':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400112007':
+ :text: Musikbibl.Anon 218
+ :tag: 852$d
+ :transform:
+'400112056':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112057':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112058':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112059':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112060':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112061':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112062':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112063':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112064':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112065':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112066':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112067':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112068':
+ :text: Musikbibl.Anon 219
+ :tag: 852$d
+ :transform:
+'400112070':
+ :text: Musikbibl.Anon 22
+ :tag: 852$d
+ :transform:
+'400004954':
+ :text: Musikbibl.Anon 220
+ :tag: 852$d
+ :transform:
+'400004955':
+ :text: Musikbibl.Anon 220
+ :tag: 852$d
+ :transform:
+'400007406':
+ :text: Musikbibl.Anon 220
+ :tag: 852$d
+ :transform:
+'408002888':
+ :text: Musikbibl.Anon 220
+ :tag: 852$d
+ :transform:
+'408002889':
+ :text: Musikbibl.Anon 220
+ :tag: 852$d
+ :transform:
+'408002890':
+ :text: Musikbibl.Anon 220
+ :tag: 852$d
+ :transform:
+'408002891':
+ :text: Musikbibl.Anon 220
+ :tag: 852$d
+ :transform:
+'400112789':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112790':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112791':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112792':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112793':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112794':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112795':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112796':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112797':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112798':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112799':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112800':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112801':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112802':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112803':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112804':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112805':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112806':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112807':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112808':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112809':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112810':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112811':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112812':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400112813':
+ :text: Musikbibl.Anon 221
+ :tag: 852$d
+ :transform:
+'400007436':
+ :text: Musikbibl.Anon 222
+ :tag: 852$d
+ :transform:
+'408002613':
+ :text: Musikbibl.Anon 222
+ :tag: 852$d
+ :transform:
+'400007434':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'400007435':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'400007437':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'400007438':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002614':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002615':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002616':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002617':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002618':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002619':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002620':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002621':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002622':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002623':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002624':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002625':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'408002626':
+ :text: Musikbibl.Anon 222 (Ms.7186)
+ :tag: 852$d
+ :transform:
+'400112073':
+ :text: Musikbibl.Anon 223,3
+ :tag: 852$d
+ :transform:
+'400007411':
+ :text: Musikbibl.Anon 224
+ :tag: 852$d
+ :transform:
+'400004916':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'400004917':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'400004918':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'400004919':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'400004920':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'400004921':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'400004922':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'400004923':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'400004924':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'400004927':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'400007439':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'408003442':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'408003443':
+ :text: Musikbibl.M 49
+ :tag: 852$d
+ :transform:
+'400007413':
+ :text: Musikbibl.Anon 227
+ :tag: 852$d
+ :transform:
+'400112814':
+ :text: Musikbibl.Anon 228
+ :tag: 852$d
+ :transform:
+'400112815':
+ :text: Musikbibl.Anon 228
+ :tag: 852$d
+ :transform:
+'400112816':
+ :text: Musikbibl.Anon 228
+ :tag: 852$d
+ :transform:
+'400007415':
+ :text: Musikbibl.Anon 229
+ :tag: 852$d
+ :transform:
+'400007145':
+ :text: Musikbibl.Anon 23
+ :tag: 852$d
+ :transform:
+'400007416':
+ :text: Musikbibl.Anon 230
+ :tag: 852$d
+ :transform:
+'400007417':
+ :text: Musikbibl.Anon 231
+ :tag: 852$d
+ :transform:
+'400007419':
+ :text: Musikbibl.Anon 233
+ :tag: 852$d
+ :transform:
+'400193152':
+ :text: Musikbibl.Anon 233 (Ms.7201)
+ :tag: 852$d
+ :transform:
+'400193153':
+ :text: Musikbibl.Anon 233 (Ms.7201)
+ :tag: 852$d
+ :transform:
+'400007420':
+ :text: Musikbibl.Anon 234
+ :tag: 852$d
+ :transform:
+'400007421':
+ :text: Musikbibl.Anon 235
+ :tag: 852$d
+ :transform:
+'400113022':
+ :text: Musikbibl.Anon 236
+ :tag: 852$d
+ :transform:
+'400112210':
+ :text: Musikbibl.Anon 237
+ :tag: 852$d
+ :transform:
+'400112209':
+ :text: Musikbibl.Anon 238
+ :tag: 852$d
+ :transform:
+'400007425':
+ :text: Musikbibl.Anon 239
+ :tag: 852$d
+ :transform:
+'400112165':
+ :text: Musikbibl.Anon 24
+ :tag: 852$d
+ :transform:
+'400112166':
+ :text: Musikbibl.Anon 24
+ :tag: 852$d
+ :transform:
+'400112167':
+ :text: Musikbibl.Anon 24
+ :tag: 852$d
+ :transform:
+'400112168':
+ :text: Musikbibl.Anon 24
+ :tag: 852$d
+ :transform:
+'400112207':
+ :text: Musikbibl.Anon 240
+ :tag: 852$d
+ :transform:
+'400112208':
+ :text: Musikbibl.Anon 241
+ :tag: 852$d
+ :transform:
+'400007428':
+ :text: Musikbibl.Anon 242
+ :tag: 852$d
+ :transform:
+'400007412':
+ :text: Musikbibl.Anon 244
+ :tag: 852$d
+ :transform:
+'408003711':
+ :text: Musikbibl.Anon 25
+ :tag: 852$d
+ :transform:
+'408003712':
+ :text: Musikbibl.Anon 25
+ :tag: 852$d
+ :transform:
+'408003713':
+ :text: Musikbibl.Anon 25
+ :tag: 852$d
+ :transform:
+'408003714':
+ :text: Musikbibl.Anon 25
+ :tag: 852$d
+ :transform:
+'408003715':
+ :text: Musikbibl.Anon 25
+ :tag: 852$d
+ :transform:
+'408003716':
+ :text: Musikbibl.Anon 25
+ :tag: 852$d
+ :transform:
+'400007148':
+ :text: Musikbibl.Anon 26
+ :tag: 852$d
+ :transform:
+'400007149':
+ :text: Musikbibl.Anon 27
+ :tag: 852$d
+ :transform:
+'400112174':
+ :text: Musikbibl.Anon 28
+ :tag: 852$d
+ :transform:
+'400111836':
+ :text: Musikbibl.Anon 29
+ :tag: 852$d
+ :transform:
+'400112200':
+ :text: Musikbibl.Anon 3
+ :tag: 852$d
+ :transform:
+'408003385':
+ :text: Musikbibl.Anon 30
+ :tag: 852$d
+ :transform:
+'408003680':
+ :text: Musikbibl.Anon 31
+ :tag: 852$d
+ :transform:
+'408003387':
+ :text: Musikbibl.Anon 32
+ :tag: 852$d
+ :transform:
+'408003436':
+ :text: Musikbibl.Anon 33
+ :tag: 852$d
+ :transform:
+'400007156':
+ :text: Musikbibl.Anon 34
+ :tag: 852$d
+ :transform:
+'400007157':
+ :text: Musikbibl.Anon 35
+ :tag: 852$d
+ :transform:
+'400007158':
+ :text: Musikbibl.Anon 36
+ :tag: 852$d
+ :transform:
+'400007159':
+ :text: Musikbibl.Anon 37
+ :tag: 852$d
+ :transform:
+'408003384':
+ :text: Musikbibl.Anon 38
+ :tag: 852$d
+ :transform:
+'400112022':
+ :text: Musikbibl.Anon 39
+ :tag: 852$d
+ :transform:
+'400112822':
+ :text: Musikbibl.Anon 4
+ :tag: 852$d
+ :transform:
+'400112009':
+ :text: Musikbibl.Anon 40
+ :tag: 852$d
+ :transform:
+'408002961':
+ :text: Musikbibl.Anon 41
+ :tag: 852$d
+ :transform:
+'400007164':
+ :text: Musikbibl.Anon 42
+ :tag: 852$d
+ :transform:
+'400007165':
+ :text: Musikbibl.Anon 42
+ :tag: 852$d
+ :transform:
+'400007166':
+ :text: Musikbibl.Anon 42
+ :tag: 852$d
+ :transform:
+'400007167':
+ :text: Musikbibl.Anon 42
+ :tag: 852$d
+ :transform:
+'400112767':
+ :text: Musikbibl.Anon 43
+ :tag: 852$d
+ :transform:
+'400007169':
+ :text: Musikbibl.Anon 44
+ :tag: 852$d
+ :transform:
+'400219389':
+ :text: Musikbibl.Anon 44
+ :tag: 852$d
+ :transform:
+'400219390':
+ :text: Musikbibl.Anon 44
+ :tag: 852$d
+ :transform:
+'400007170':
+ :text: Musikbibl.Anon 45
+ :tag: 852$d
+ :transform:
+'400112835':
+ :text: Musikbibl.Anon 46
+ :tag: 852$d
+ :transform:
+'400007172':
+ :text: Musikbibl.Anon 47
+ :tag: 852$d
+ :transform:
+'408003437':
+ :text: Musikbibl.Anon 48
+ :tag: 852$d
+ :transform:
+'400007174':
+ :text: Musikbibl.Anon 49
+ :tag: 852$d
+ :transform:
+'400007127':
+ :text: Musikbibl.Anon 5
+ :tag: 852$d
+ :transform:
+'400112077':
+ :text: Musikbibl.Anon 50
+ :tag: 852$d
+ :transform:
+'400193080':
+ :text: Musikbibl.Anon 51
+ :tag: 852$d
+ :transform:
+'400193081':
+ :text: Musikbibl.Anon 51
+ :tag: 852$d
+ :transform:
+'400193082':
+ :text: Musikbibl.Anon 51
+ :tag: 852$d
+ :transform:
+'400112759':
+ :text: Musikbibl.Anon 52
+ :tag: 852$d
+ :transform:
+'408003678':
+ :text: Musikbibl.Anon 53
+ :tag: 852$d
+ :transform:
+'400112935':
+ :text: Musikbibl.Anon 54
+ :tag: 852$d
+ :transform:
+'408003441':
+ :text: Musikbibl.Anon 55
+ :tag: 852$d
+ :transform:
+'400007181':
+ :text: Musikbibl.Anon 56
+ :tag: 852$d
+ :transform:
+'400112204':
+ :text: Musikbibl.Anon 57
+ :tag: 852$d
+ :transform:
+'400007183':
+ :text: Musikbibl.Anon 58
+ :tag: 852$d
+ :transform:
+'400007184':
+ :text: Musikbibl.Anon 59
+ :tag: 852$d
+ :transform:
+'400193083':
+ :text: Musikbibl.Anon 59
+ :tag: 852$d
+ :transform:
+'400193084':
+ :text: Musikbibl.Anon 59
+ :tag: 852$d
+ :transform:
+'400007128':
+ :text: Musikbibl.Anon 6
+ :tag: 852$d
+ :transform:
+'400007185':
+ :text: Musikbibl.Anon 60
+ :tag: 852$d
+ :transform:
+'400193085':
+ :text: Musikbibl.Anon 60 (Ms.6974)
+ :tag: 852$d
+ :transform:
+'400193086':
+ :text: Musikbibl.Anon 60 (Ms.6974)
+ :tag: 852$d
+ :transform:
+'400007186':
+ :text: Musikbibl.Anon 61
+ :tag: 852$d
+ :transform:
+'400193087':
+ :text: Musikbibl.Anon 61
+ :tag: 852$d
+ :transform:
+'400193088':
+ :text: Musikbibl.Anon 61
+ :tag: 852$d
+ :transform:
+'400007187':
+ :text: Musikbibl.Anon 62
+ :tag: 852$d
+ :transform:
+'400007188':
+ :text: Musikbibl.Anon 63
+ :tag: 852$d
+ :transform:
+'400193089':
+ :text: Musikbibl.Anon 63
+ :tag: 852$d
+ :transform:
+'400193090':
+ :text: Musikbibl.Anon 63
+ :tag: 852$d
+ :transform:
+'400007189':
+ :text: Musikbibl.Anon 64
+ :tag: 852$d
+ :transform:
+'400007190':
+ :text: Musikbibl.Anon 65
+ :tag: 852$d
+ :transform:
+'400193092':
+ :text: Musikbibl.Anon 65
+ :tag: 852$d
+ :transform:
+'408002704':
+ :text: Musikbibl.Anon 65 (Ms.6979)
+ :tag: 852$d
+ :transform:
+'400007191':
+ :text: Musikbibl.Anon 66
+ :tag: 852$d
+ :transform:
+'400007192':
+ :text: Musikbibl.Anon 67
+ :tag: 852$d
+ :transform:
+'400193093':
+ :text: Musikbibl.Anon 67
+ :tag: 852$d
+ :transform:
+'400193094':
+ :text: Musikbibl.Anon 67
+ :tag: 852$d
+ :transform:
+'400007193':
+ :text: Musikbibl.Anon 68
+ :tag: 852$d
+ :transform:
+'400193095':
+ :text: Musikbibl.Anon 68
+ :tag: 852$d
+ :transform:
+'400193096':
+ :text: Musikbibl.Anon 68
+ :tag: 852$d
+ :transform:
+'400007194':
+ :text: Musikbibl.Anon 69
+ :tag: 852$d
+ :transform:
+'400193097':
+ :text: Musikbibl.Anon 69
+ :tag: 852$d
+ :transform:
+'400193098':
+ :text: Musikbibl.Anon 69
+ :tag: 852$d
+ :transform:
+'400112761':
+ :text: Musikbibl.Anon 7
+ :tag: 852$d
+ :transform:
+'400007195':
+ :text: Musikbibl.Anon 70
+ :tag: 852$d
+ :transform:
+'400193099':
+ :text: Musikbibl.Anon 70
+ :tag: 852$d
+ :transform:
+'400193100':
+ :text: Musikbibl.Anon 70
+ :tag: 852$d
+ :transform:
+'400007196':
+ :text: Musikbibl.Anon 71
+ :tag: 852$d
+ :transform:
+'400193101':
+ :text: Musikbibl.Anon 71
+ :tag: 852$d
+ :transform:
+'400193102':
+ :text: Musikbibl.Anon 71
+ :tag: 852$d
+ :transform:
+'400112758':
+ :text: Musikbibl.Anon 72
+ :tag: 852$d
+ :transform:
+'400007198':
+ :text: Musikbibl.Anon 73
+ :tag: 852$d
+ :transform:
+'400112034':
+ :text: Musikbibl.Anon 74
+ :tag: 852$d
+ :transform:
+'400007200':
+ :text: Musikbibl.Anon 75
+ :tag: 852$d
+ :transform:
+'400007201':
+ :text: Musikbibl.Anon 76
+ :tag: 852$d
+ :transform:
+'400007202':
+ :text: Musikbibl.Anon 77
+ :tag: 852$d
+ :transform:
+'400007203':
+ :text: Musikbibl.Anon 78
+ :tag: 852$d
+ :transform:
+'400111870':
+ :text: Musikbibl.Anon 79
+ :tag: 852$d
+ :transform:
+'408003681':
+ :text: Musikbibl.Anon 8
+ :tag: 852$d
+ :transform:
+'400007205':
+ :text: Musikbibl.Anon 80
+ :tag: 852$d
+ :transform:
+'400007206':
+ :text: Musikbibl.Anon 81
+ :tag: 852$d
+ :transform:
+'400007207':
+ :text: Musikbibl.Anon 82
+ :tag: 852$d
+ :transform:
+'400007208':
+ :text: Musikbibl.Anon 83
+ :tag: 852$d
+ :transform:
+'400111837':
+ :text: Musikbibl.Anon 84
+ :tag: 852$d
+ :transform:
+'400007210':
+ :text: Musikbibl.Anon 85
+ :tag: 852$d
+ :transform:
+'400111833':
+ :text: Musikbibl.Anon 86
+ :tag: 852$d
+ :transform:
+'400111835':
+ :text: Musikbibl.Anon 87
+ :tag: 852$d
+ :transform:
+'400007213':
+ :text: Musikbibl.Anon 88
+ :tag: 852$d
+ :transform:
+'408002933':
+ :text: Musikbibl.Anon 89
+ :tag: 852$d
+ :transform:
+'400112825':
+ :text: Musikbibl.Anon 9
+ :tag: 852$d
+ :transform:
+'400112826':
+ :text: Musikbibl.Anon 9
+ :tag: 852$d
+ :transform:
+'400112827':
+ :text: Musikbibl.Anon 9
+ :tag: 852$d
+ :transform:
+'400112828':
+ :text: Musikbibl.Anon 9
+ :tag: 852$d
+ :transform:
+'400112829':
+ :text: Musikbibl.Anon 9
+ :tag: 852$d
+ :transform:
+'400007215':
+ :text: Musikbibl.Anon 90
+ :tag: 852$d
+ :transform:
+'400007216':
+ :text: Musikbibl.Anon 91
+ :tag: 852$d
+ :transform:
+'400111906':
+ :text: Musikbibl.Anon 92
+ :tag: 852$d
+ :transform:
+'400007218':
+ :text: Musikbibl.Anon 93
+ :tag: 852$d
+ :transform:
+'400112113':
+ :text: Musikbibl.Anon 94
+ :tag: 852$d
+ :transform:
+'400111892':
+ :text: Musikbibl.Anon 95
+ :tag: 852$d
+ :transform:
+'400007221':
+ :text: Musikbibl.Anon 96
+ :tag: 852$d
+ :transform:
+'400007222':
+ :text: Musikbibl.Anon 97
+ :tag: 852$d
+ :transform:
+'400193103':
+ :text: Musikbibl.Anon 97
+ :tag: 852$d
+ :transform:
+'400193104':
+ :text: Musikbibl.Anon 97
+ :tag: 852$d
+ :transform:
+'400007223':
+ :text: Musikbibl.Anon 98
+ :tag: 852$d
+ :transform:
+'408003527':
+ :text: Musikbibl.Anon 99
+ :tag: 852$d
+ :transform:
+'400193105':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003149':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003150':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003152':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003153':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003154':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003155':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003156':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003157':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003158':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003159':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003160':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003161':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003162':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003163':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003164':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003165':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003166':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003167':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003168':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003169':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003170':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003171':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003172':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003173':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003174':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003175':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003176':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'408003177':
+ :text: Musikbibl.Anon I 68
+ :tag: 852$d
+ :transform:
+'400007312':
+ :text: Musikbibl.Anon. 161
+ :tag: 852$d
+ :transform:
+'400112907':
+ :text: Musikbibl.B 101
+ :tag: 852$d
+ :transform:
+'400112915':
+ :text: Musikbibl.B 103
+ :tag: 852$d
+ :transform:
+'400112916':
+ :text: Musikbibl.B 103
+ :tag: 852$d
+ :transform:
+'400112917':
+ :text: Musikbibl.B 103
+ :tag: 852$d
+ :transform:
+'400112938':
+ :text: Musikbibl.B 107
+ :tag: 852$d
+ :transform:
+'400112934':
+ :text: Musikbibl.B 108
+ :tag: 852$d
+ :transform:
+'400112936':
+ :text: Musikbibl.B 109
+ :tag: 852$d
+ :transform:
+'400112939':
+ :text: Musikbibl.B 110
+ :tag: 852$d
+ :transform:
+'400006868':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400006869':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400006870':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400006871':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400006872':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400006873':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400006874':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400006875':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400006876':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400173991':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400173992':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400173993':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400173994':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400173995':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400173996':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400173997':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400173998':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400173999':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400187995':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'408004631':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'408004632':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'408004633':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'408004634':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'408004635':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'408004636':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'408004637':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'408004638':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'408004639':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'408004640':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'408004641':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'408004642':
+ :text: Musikbibl.B 114
+ :tag: 852$d
+ :transform:
+'400112845':
+ :text: Musikbibl.B 26
+ :tag: 852$d
+ :transform:
+'400112846':
+ :text: Musikbibl.B 26
+ :tag: 852$d
+ :transform:
+'400112847':
+ :text: Musikbibl.B 26
+ :tag: 852$d
+ :transform:
+'400112848':
+ :text: Musikbibl.B 26
+ :tag: 852$d
+ :transform:
+'400112849':
+ :text: Musikbibl.B 26
+ :tag: 852$d
+ :transform:
+'400112850':
+ :text: Musikbibl.B 28
+ :tag: 852$d
+ :transform:
+'400112837':
+ :text: Musikbibl.B 29
+ :tag: 852$d
+ :transform:
+'400112838':
+ :text: Musikbibl.B 29
+ :tag: 852$d
+ :transform:
+'400112839':
+ :text: Musikbibl.B 29
+ :tag: 852$d
+ :transform:
+'400112840':
+ :text: Musikbibl.B 29
+ :tag: 852$d
+ :transform:
+'400112841':
+ :text: Musikbibl.B 29
+ :tag: 852$d
+ :transform:
+'400112842':
+ :text: Musikbibl.B 29
+ :tag: 852$d
+ :transform:
+'400112843':
+ :text: Musikbibl.B 29
+ :tag: 852$d
+ :transform:
+'400112878':
+ :text: Musikbibl.B 7
+ :tag: 852$d
+ :transform:
+'400112862':
+ :text: Musikbibl.B 82
+ :tag: 852$d
+ :transform:
+'400112863':
+ :text: Musikbibl.B 82
+ :tag: 852$d
+ :transform:
+'400112864':
+ :text: Musikbibl.B 82
+ :tag: 852$d
+ :transform:
+'400112877':
+ :text: Musikbibl.B 83
+ :tag: 852$d
+ :transform:
+'400112881':
+ :text: Musikbibl.B 85
+ :tag: 852$d
+ :transform:
+'400112887':
+ :text: Musikbibl.B 86
+ :tag: 852$d
+ :transform:
+'400112886':
+ :text: Musikbibl.B 88
+ :tag: 852$d
+ :transform:
+'400006851':
+ :text: Musikbibl.B 91
+ :tag: 852$d
+ :transform:
+'400006852':
+ :text: Musikbibl.B 91
+ :tag: 852$d
+ :transform:
+'400006853':
+ :text: Musikbibl.B 91
+ :tag: 852$d
+ :transform:
+'400006854':
+ :text: Musikbibl.B 91
+ :tag: 852$d
+ :transform:
+'400006855':
+ :text: Musikbibl.B 91
+ :tag: 852$d
+ :transform:
+'400006856':
+ :text: Musikbibl.B 91
+ :tag: 852$d
+ :transform:
+'400230161':
+ :text: Musikbibl.B 91
+ :tag: 852$d
+ :transform:
+'400230162':
+ :text: Musikbibl.B 91
+ :tag: 852$d
+ :transform:
+'400230163':
+ :text: Musikbibl.B 91
+ :tag: 852$d
+ :transform:
+'400112912':
+ :text: Musikbibl.B 98
+ :tag: 852$d
+ :transform:
+'400113029':
+ :text: Musikbibl.C 1
+ :tag: 852$d
+ :transform:
+'400113026':
+ :text: Musikbibl.C 12
+ :tag: 852$d
+ :transform:
+'400113027':
+ :text: Musikbibl.C 13
+ :tag: 852$d
+ :transform:
+'400113025':
+ :text: Musikbibl.C 14
+ :tag: 852$d
+ :transform:
+'400113035':
+ :text: Musikbibl.C 2
+ :tag: 852$d
+ :transform:
+'400113036':
+ :text: Musikbibl.C 21
+ :tag: 852$d
+ :transform:
+'400113039':
+ :text: Musikbibl.C 22
+ :tag: 852$d
+ :transform:
+'400113023':
+ :text: Musikbibl.C 6
+ :tag: 852$d
+ :transform:
+'400113021':
+ :text: Musikbibl.C 7
+ :tag: 852$d
+ :transform:
+'400113020':
+ :text: Musikbibl.C 8
+ :tag: 852$d
+ :transform:
+'400113065':
+ :text: Musikbibl.D 12
+ :tag: 852$d
+ :transform:
+'400113103':
+ :text: Musikbibl.D 14
+ :tag: 852$d
+ :transform:
+'400113063':
+ :text: Musikbibl.D 2
+ :tag: 852$d
+ :transform:
+'400113090':
+ :text: Musikbibl.D 21
+ :tag: 852$d
+ :transform:
+'400113091':
+ :text: Musikbibl.D 21
+ :tag: 852$d
+ :transform:
+'400113092':
+ :text: Musikbibl.D 21
+ :tag: 852$d
+ :transform:
+'400113093':
+ :text: Musikbibl.D 21
+ :tag: 852$d
+ :transform:
+'400113094':
+ :text: Musikbibl.D 21
+ :tag: 852$d
+ :transform:
+'400113095':
+ :text: Musikbibl.D 21
+ :tag: 852$d
+ :transform:
+'400113096':
+ :text: Musikbibl.D 21
+ :tag: 852$d
+ :transform:
+'400113117':
+ :text: Musikbibl.D 42
+ :tag: 852$d
+ :transform:
+'400113118':
+ :text: Musikbibl.D 42
+ :tag: 852$d
+ :transform:
+'400113119':
+ :text: Musikbibl.D 42
+ :tag: 852$d
+ :transform:
+'400113120':
+ :text: Musikbibl.D 42
+ :tag: 852$d
+ :transform:
+'400113121':
+ :text: Musikbibl.D 42
+ :tag: 852$d
+ :transform:
+'400113122':
+ :text: Musikbibl.D 42
+ :tag: 852$d
+ :transform:
+'400113123':
+ :text: Musikbibl.D 42
+ :tag: 852$d
+ :transform:
+'400006898':
+ :text: Musikbibl.F 10
+ :tag: 852$d
+ :transform:
+'400006899':
+ :text: Musikbibl.F 17
+ :tag: 852$d
+ :transform:
+'400113139':
+ :text: Musikbibl.F 3
+ :tag: 852$d
+ :transform:
+'400006894':
+ :text: Musikbibl.F 4
+ :tag: 852$d
+ :transform:
+'400006895':
+ :text: Musikbibl.F 7
+ :tag: 852$d
+ :transform:
+'400006896':
+ :text: Musikbibl.F 8
+ :tag: 852$d
+ :transform:
+'400006897':
+ :text: Musikbibl.F 9
+ :tag: 852$d
+ :transform:
+'400006906':
+ :text: Musikbibl.G 10
+ :tag: 852$d
+ :transform:
+'400006907':
+ :text: Musikbibl.G 11
+ :tag: 852$d
+ :transform:
+'400193006':
+ :text: Musikbibl.G 11
+ :tag: 852$d
+ :transform:
+'400193007':
+ :text: Musikbibl.G 11
+ :tag: 852$d
+ :transform:
+'400006908':
+ :text: Musikbibl.G 12
+ :tag: 852$d
+ :transform:
+'400006909':
+ :text: Musikbibl.G 13
+ :tag: 852$d
+ :transform:
+'400006910':
+ :text: Musikbibl.G 14
+ :tag: 852$d
+ :transform:
+'400006911':
+ :text: Musikbibl.G 15
+ :tag: 852$d
+ :transform:
+'400006912':
+ :text: Musikbibl.G 16
+ :tag: 852$d
+ :transform:
+'400006913':
+ :text: Musikbibl.G 18
+ :tag: 852$d
+ :transform:
+'400006914':
+ :text: Musikbibl.G 18|a
+ :tag: 852$d
+ :transform:
+'400006900':
+ :text: Musikbibl.G 2
+ :tag: 852$d
+ :transform:
+'400006915':
+ :text: Musikbibl.G 24
+ :tag: 852$d
+ :transform:
+'400006916':
+ :text: Musikbibl.G 27
+ :tag: 852$d
+ :transform:
+'400006918':
+ :text: Musikbibl.G 28
+ :tag: 852$d
+ :transform:
+'400006901':
+ :text: Musikbibl.G 3
+ :tag: 852$d
+ :transform:
+'400006917':
+ :text: Musikbibl.G 30
+ :tag: 852$d
+ :transform:
+'400006919':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193008':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193009':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193010':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193011':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193012':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193013':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193014':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193015':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193016':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193017':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193018':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193019':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193020':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193021':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193022':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193023':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193024':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193025':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193026':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193027':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193028':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193029':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193030':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193031':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400193032':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002941':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002942':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002943':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002944':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002945':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002946':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002947':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002948':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002949':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002950':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002951':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002952':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002953':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'408002954':
+ :text: Musikbibl.G 32
+ :tag: 852$d
+ :transform:
+'400006920':
+ :text: Musikbibl.G 34
+ :tag: 852$d
+ :transform:
+'400006902':
+ :text: Musikbibl.G 4
+ :tag: 852$d
+ :transform:
+'400006903':
+ :text: Musikbibl.G 5
+ :tag: 852$d
+ :transform:
+'400006904':
+ :text: Musikbibl.G 8
+ :tag: 852$d
+ :transform:
+'400006905':
+ :text: Musikbibl.G 9
+ :tag: 852$d
+ :transform:
+'400006921':
+ :text: Musikbibl.H 3
+ :tag: 852$d
+ :transform:
+'400006922':
+ :text: Musikbibl.H 4
+ :tag: 852$d
+ :transform:
+'400006923':
+ :text: Musikbibl.H 49
+ :tag: 852$d
+ :transform:
+'400006924':
+ :text: Musikbibl.H 50
+ :tag: 852$d
+ :transform:
+'400006925':
+ :text: Musikbibl.H 51
+ :tag: 852$d
+ :transform:
+'400006926':
+ :text: Musikbibl.H 52
+ :tag: 852$d
+ :transform:
+'400006928':
+ :text: Musikbibl.H 75
+ :tag: 852$d
+ :transform:
+'400193033':
+ :text: Musikbibl.H 75
+ :tag: 852$d
+ :transform:
+'400193034':
+ :text: Musikbibl.H 75
+ :tag: 852$d
+ :transform:
+'400193035':
+ :text: Musikbibl.H 75
+ :tag: 852$d
+ :transform:
+'400193036':
+ :text: Musikbibl.H 75
+ :tag: 852$d
+ :transform:
+'400193037':
+ :text: Musikbibl.H 75
+ :tag: 852$d
+ :transform:
+'400193038':
+ :text: Musikbibl.H 75
+ :tag: 852$d
+ :transform:
+'400193039':
+ :text: Musikbibl.H 75
+ :tag: 852$d
+ :transform:
+'400193040':
+ :text: Musikbibl.H 75
+ :tag: 852$d
+ :transform:
+'400006929':
+ :text: Musikbibl.H 76
+ :tag: 852$d
+ :transform:
+'400007408':
+ :text: Musikbibl.H 76
+ :tag: 852$d
+ :transform:
+'400007409':
+ :text: Musikbibl.H 76
+ :tag: 852$d
+ :transform:
+'400007410':
+ :text: Musikbibl.H 76
+ :tag: 852$d
+ :transform:
+'400007418':
+ :text: Musikbibl.H 76
+ :tag: 852$d
+ :transform:
+'400006930':
+ :text: Musikbibl.H 77
+ :tag: 852$d
+ :transform:
+'400006931':
+ :text: Musikbibl.H 80
+ :tag: 852$d
+ :transform:
+'400006932':
+ :text: Musikbibl.H 82
+ :tag: 852$d
+ :transform:
+'400006927':
+ :text: Musikbibl.H 86
+ :tag: 852$d
+ :transform:
+'400007235':
+ :text: Musikbibl.I 68
+ :tag: 852$d
+ :transform:
+'400006933':
+ :text: Musikbibl.J 57
+ :tag: 852$d
+ :transform:
+'400006934':
+ :text: Musikbibl.J 58
+ :tag: 852$d
+ :transform:
+'400006935':
+ :text: Musikbibl.J 64
+ :tag: 852$d
+ :transform:
+'400006936':
+ :text: Musikbibl.J 65
+ :tag: 852$d
+ :transform:
+'400193041':
+ :text: Musikbibl.J 65
+ :tag: 852$d
+ :transform:
+'400193042':
+ :text: Musikbibl.J 65
+ :tag: 852$d
+ :transform:
+'400006937':
+ :text: Musikbibl.J 66
+ :tag: 852$d
+ :transform:
+'400006938':
+ :text: Musikbibl.J 67
+ :tag: 852$d
+ :transform:
+'400004873':
+ :text: Musikbibl.K 20
+ :tag: 852$d
+ :transform:
+'400004874':
+ :text: Musikbibl.K 20
+ :tag: 852$d
+ :transform:
+'400004875':
+ :text: Musikbibl.K 20
+ :tag: 852$d
+ :transform:
+'400004876':
+ :text: Musikbibl.K 20
+ :tag: 852$d
+ :transform:
+'400004877':
+ :text: Musikbibl.K 20
+ :tag: 852$d
+ :transform:
+'400004878':
+ :text: Musikbibl.K 20
+ :tag: 852$d
+ :transform:
+'400006940':
+ :text: Musikbibl.K 20
+ :tag: 852$d
+ :transform:
+'408003264':
+ :text: Musikbibl.K 20
+ :tag: 852$d
+ :transform:
+'408003265':
+ :text: Musikbibl.K 20
+ :tag: 852$d
+ :transform:
+'400006941':
+ :text: Musikbibl.K 21
+ :tag: 852$d
+ :transform:
+'400006942':
+ :text: Musikbibl.K 26
+ :tag: 852$d
+ :transform:
+'408004868':
+ :text: Musikbibl.K 35/W 1
+ :tag: 852$d
+ :transform:
+'408004869':
+ :text: Musikbibl.K 35/W 1
+ :tag: 852$d
+ :transform:
+'408004870':
+ :text: Musikbibl.K 35/W 1
+ :tag: 852$d
+ :transform:
+'400006943':
+ :text: Musikbibl.K 42
+ :tag: 852$d
+ :transform:
+'400006945':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400006946':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400006947':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400253608':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400253609':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400253610':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400253611':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400253612':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400253613':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400253614':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400253615':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400253616':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400253617':
+ :text: Musikbibl.K 63
+ :tag: 852$d
+ :transform:
+'400004879':
+ :text: Musikbibl.K 63-65
+ :tag: 852$d
+ :transform:
+'400004880':
+ :text: Musikbibl.K 63-65
+ :tag: 852$d
+ :transform:
+'400004881':
+ :text: Musikbibl.K 63-65
+ :tag: 852$d
+ :transform:
+'400004882':
+ :text: Musikbibl.K 63-65
+ :tag: 852$d
+ :transform:
+'400004883':
+ :text: Musikbibl.K 63-65
+ :tag: 852$d
+ :transform:
+'400004884':
+ :text: Musikbibl.K 63-65
+ :tag: 852$d
+ :transform:
+'400006944':
+ :text: Musikbibl.K 63-65
+ :tag: 852$d
+ :transform:
+'400006939':
+ :text: Musikbibl.K 8
+ :tag: 852$d
+ :transform:
+'400006950':
+ :text: Musikbibl.L 16
+ :tag: 852$d
+ :transform:
+'400006951':
+ :text: Musikbibl.L 18
+ :tag: 852$d
+ :transform:
+'400006952':
+ :text: Musikbibl.L 19
+ :tag: 852$d
+ :transform:
+'400006954':
+ :text: Musikbibl.L 21
+ :tag: 852$d
+ :transform:
+'400006955':
+ :text: Musikbibl.L 24
+ :tag: 852$d
+ :transform:
+'400006953':
+ :text: Musikbibl.L 26
+ :tag: 852$d
+ :transform:
+'400006948':
+ :text: Musikbibl.L 4
+ :tag: 852$d
+ :transform:
+'400006949':
+ :text: Musikbibl.L 8
+ :tag: 852$d
+ :transform:
+'400006958':
+ :text: Musikbibl.M 10
+ :tag: 852$d
+ :transform:
+'400004885':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004886':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004887':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004888':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004889':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004890':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004891':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004892':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004893':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004894':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004895':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004896':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004897':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004898':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004899':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004900':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004901':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004902':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004903':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004904':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004905':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004906':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004907':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004908':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004909':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004910':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004911':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004912':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004913':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004914':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400004915':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400007002':
+ :text: Musikbibl.M 105
+ :tag: 852$d
+ :transform:
+'400006959':
+ :text: Musikbibl.M 11
+ :tag: 852$d
+ :transform:
+'400006960':
+ :text: Musikbibl.M 11
+ :tag: 852$d
+ :transform:
+'400007003':
+ :text: Musikbibl.M 113
+ :tag: 852$d
+ :transform:
+'400006983':
+ :text: Musikbibl.M 116
+ :tag: 852$d
+ :transform:
+'400006962':
+ :text: Musikbibl.M 12
+ :tag: 852$d
+ :transform:
+'400006963':
+ :text: Musikbibl.M 13
+ :tag: 852$d
+ :transform:
+'400006964':
+ :text: Musikbibl.M 14
+ :tag: 852$d
+ :transform:
+'400006965':
+ :text: Musikbibl.M 15
+ :tag: 852$d
+ :transform:
+'400006966':
+ :text: Musikbibl.M 16
+ :tag: 852$d
+ :transform:
+'400006967':
+ :text: Musikbibl.M 18
+ :tag: 852$d
+ :transform:
+'400006968':
+ :text: Musikbibl.M 19
+ :tag: 852$d
+ :transform:
+'400006969':
+ :text: Musikbibl.M 20
+ :tag: 852$d
+ :transform:
+'400006970':
+ :text: Musikbibl.M 21
+ :tag: 852$d
+ :transform:
+'400006971':
+ :text: Musikbibl.M 22
+ :tag: 852$d
+ :transform:
+'400006972':
+ :text: Musikbibl.M 23
+ :tag: 852$d
+ :transform:
+'400006973':
+ :text: Musikbibl.M 24
+ :tag: 852$d
+ :transform:
+'400006974':
+ :text: Musikbibl.M 25
+ :tag: 852$d
+ :transform:
+'400006975':
+ :text: Musikbibl.M 26
+ :tag: 852$d
+ :transform:
+'400006976':
+ :text: Musikbibl.M 27
+ :tag: 852$d
+ :transform:
+'400006977':
+ :text: Musikbibl.M 28
+ :tag: 852$d
+ :transform:
+'400006978':
+ :text: Musikbibl.M 29
+ :tag: 852$d
+ :transform:
+'400006080':
+ :text: Musikbibl.M 30/31
+ :tag: 852$d
+ :transform:
+'400173976':
+ :text: Musikbibl.M 30/31
+ :tag: 852$d
+ :transform:
+'400173977':
+ :text: Musikbibl.M 30/31
+ :tag: 852$d
+ :transform:
+'400006979':
+ :text: Musikbibl.M 32
+ :tag: 852$d
+ :transform:
+'400006980':
+ :text: Musikbibl.M 33
+ :tag: 852$d
+ :transform:
+'400006981':
+ :text: Musikbibl.M 34
+ :tag: 852$d
+ :transform:
+'400113066':
+ :text: Musikbibl.M 38
+ :tag: 852$d
+ :transform:
+'400113067':
+ :text: Musikbibl.M 39
+ :tag: 852$d
+ :transform:
+'400006985':
+ :text: Musikbibl.M 40
+ :tag: 852$d
+ :transform:
+'400006986':
+ :text: Musikbibl.M 41
+ :tag: 852$d
+ :transform:
+'400007004':
+ :text: Musikbibl.M 42
+ :tag: 852$d
+ :transform:
+'400006987':
+ :text: Musikbibl.M 43
+ :tag: 852$d
+ :transform:
+'400006988':
+ :text: Musikbibl.M 44
+ :tag: 852$d
+ :transform:
+'400006999':
+ :text: Musikbibl.M 45
+ :tag: 852$d
+ :transform:
+'400007000':
+ :text: Musikbibl.M 47
+ :tag: 852$d
+ :transform:
+'400007001':
+ :text: Musikbibl.M 48
+ :tag: 852$d
+ :transform:
+'400006989':
+ :text: Musikbibl.M 51
+ :tag: 852$d
+ :transform:
+'400006990':
+ :text: Musikbibl.M 52
+ :tag: 852$d
+ :transform:
+'400006991':
+ :text: Musikbibl.M 53
+ :tag: 852$d
+ :transform:
+'400112885':
+ :text: Musikbibl.M 57
+ :tag: 852$d
+ :transform:
+'400006993':
+ :text: Musikbibl.M 58
+ :tag: 852$d
+ :transform:
+'400006994':
+ :text: Musikbibl.M 59
+ :tag: 852$d
+ :transform:
+'400006956':
+ :text: Musikbibl.M 6
+ :tag: 852$d
+ :transform:
+'400193043':
+ :text: Musikbibl.M 6
+ :tag: 852$d
+ :transform:
+'400193044':
+ :text: Musikbibl.M 6
+ :tag: 852$d
+ :transform:
+'400006995':
+ :text: Musikbibl.M 60
+ :tag: 852$d
+ :transform:
+'400006996':
+ :text: Musikbibl.M 60
+ :tag: 852$d
+ :transform:
+'400006997':
+ :text: Musikbibl.M 60
+ :tag: 852$d
+ :transform:
+'400193049':
+ :text: Musikbibl.M 60
+ :tag: 852$d
+ :transform:
+'400193050':
+ :text: Musikbibl.M 60
+ :tag: 852$d
+ :transform:
+'400193051':
+ :text: Musikbibl.M 60
+ :tag: 852$d
+ :transform:
+'400193052':
+ :text: Musikbibl.M 60
+ :tag: 852$d
+ :transform:
+'400193053':
+ :text: Musikbibl.M 60
+ :tag: 852$d
+ :transform:
+'400193054':
+ :text: Musikbibl.M 60
+ :tag: 852$d
+ :transform:
+'400193055':
+ :text: Musikbibl.M 60
+ :tag: 852$d
+ :transform:
+'400193056':
+ :text: Musikbibl.M 60
+ :tag: 852$d
+ :transform:
+'400193057':
+ :text: Musikbibl.M 60
+ :tag: 852$d
+ :transform:
+'400006998':
+ :text: Musikbibl.M 61
+ :tag: 852$d
+ :transform:
+'400006957':
+ :text: Musikbibl.M 7
+ :tag: 852$d
+ :transform:
+'400193045':
+ :text: Musikbibl.M 7
+ :tag: 852$d
+ :transform:
+'400193046':
+ :text: Musikbibl.M 7
+ :tag: 852$d
+ :transform:
+'400193047':
+ :text: Musikbibl.M 7
+ :tag: 852$d
+ :transform:
+'400193048':
+ :text: Musikbibl.M 7
+ :tag: 852$d
+ :transform:
+'400007006':
+ :text: Musikbibl.N 1
+ :tag: 852$d
+ :transform:
+'400007010':
+ :text: Musikbibl.N 11
+ :tag: 852$d
+ :transform:
+'400007011':
+ :text: Musikbibl.N 12
+ :tag: 852$d
+ :transform:
+'400007012':
+ :text: Musikbibl.N 17
+ :tag: 852$d
+ :transform:
+'400007013':
+ :text: Musikbibl.N 19
+ :tag: 852$d
+ :transform:
+'400007007':
+ :text: Musikbibl.N 2
+ :tag: 852$d
+ :transform:
+'400007014':
+ :text: Musikbibl.N 20
+ :tag: 852$d
+ :transform:
+'400007015':
+ :text: Musikbibl.N 26
+ :tag: 852$d
+ :transform:
+'400007008':
+ :text: Musikbibl.N 4
+ :tag: 852$d
+ :transform:
+'400007009':
+ :text: Musikbibl.N 5
+ :tag: 852$d
+ :transform:
+'400007020':
+ :text: Musikbibl.P 10
+ :tag: 852$d
+ :transform:
+'400007021':
+ :text: Musikbibl.P 12
+ :tag: 852$d
+ :transform:
+'400193059':
+ :text: Musikbibl.P 12
+ :tag: 852$d
+ :transform:
+'400193060':
+ :text: Musikbibl.P 12
+ :tag: 852$d
+ :transform:
+'400193061':
+ :text: Musikbibl.P 12
+ :tag: 852$d
+ :transform:
+'400193062':
+ :text: Musikbibl.P 12
+ :tag: 852$d
+ :transform:
+'400193063':
+ :text: Musikbibl.P 12
+ :tag: 852$d
+ :transform:
+'400193064':
+ :text: Musikbibl.P 12
+ :tag: 852$d
+ :transform:
+'400193065':
+ :text: Musikbibl.P 12
+ :tag: 852$d
+ :transform:
+'400007022':
+ :text: Musikbibl.P 13
+ :tag: 852$d
+ :transform:
+'400007023':
+ :text: Musikbibl.P 14a
+ :tag: 852$d
+ :transform:
+'400007024':
+ :text: Musikbibl.P 14b
+ :tag: 852$d
+ :transform:
+'400007025':
+ :text: Musikbibl.P 15
+ :tag: 852$d
+ :transform:
+'400007026':
+ :text: Musikbibl.P 16
+ :tag: 852$d
+ :transform:
+'400007027':
+ :text: Musikbibl.P 17
+ :tag: 852$d
+ :transform:
+'400007028':
+ :text: Musikbibl.P 21
+ :tag: 852$d
+ :transform:
+'400007029':
+ :text: Musikbibl.P 21
+ :tag: 852$d
+ :transform:
+'400007030':
+ :text: Musikbibl.P 21
+ :tag: 852$d
+ :transform:
+'400007031':
+ :text: Musikbibl.P 21
+ :tag: 852$d
+ :transform:
+'400007032':
+ :text: Musikbibl.P 21
+ :tag: 852$d
+ :transform:
+'400007033':
+ :text: Musikbibl.P 21
+ :tag: 852$d
+ :transform:
+'400219378':
+ :text: Musikbibl.P 21
+ :tag: 852$d
+ :transform:
+'400219379':
+ :text: Musikbibl.P 21
+ :tag: 852$d
+ :transform:
+'400219380':
+ :text: Musikbibl.P 21
+ :tag: 852$d
+ :transform:
+'400007034':
+ :text: Musikbibl.P 25
+ :tag: 852$d
+ :transform:
+'400007035':
+ :text: Musikbibl.P 26
+ :tag: 852$d
+ :transform:
+'400007036':
+ :text: Musikbibl.P 27
+ :tag: 852$d
+ :transform:
+'400007037':
+ :text: Musikbibl.P 28
+ :tag: 852$d
+ :transform:
+'400007038':
+ :text: Musikbibl.P 29
+ :tag: 852$d
+ :transform:
+'400007017':
+ :text: Musikbibl.P 3
+ :tag: 852$d
+ :transform:
+'400004928':
+ :text: Musikbibl.P 30
+ :tag: 852$d
+ :transform:
+'400004929':
+ :text: Musikbibl.P 30
+ :tag: 852$d
+ :transform:
+'400004930':
+ :text: Musikbibl.P 30
+ :tag: 852$d
+ :transform:
+'400004931':
+ :text: Musikbibl.P 30
+ :tag: 852$d
+ :transform:
+'400004932':
+ :text: Musikbibl.P 30
+ :tag: 852$d
+ :transform:
+'400004933':
+ :text: Musikbibl.P 30
+ :tag: 852$d
+ :transform:
+'400007041':
+ :text: Musikbibl.P 30
+ :tag: 852$d
+ :transform:
+'400007016':
+ :text: Musikbibl.P 31
+ :tag: 852$d
+ :transform:
+'400007039':
+ :text: Musikbibl.P 33
+ :tag: 852$d
+ :transform:
+'400007040':
+ :text: Musikbibl.P 38
+ :tag: 852$d
+ :transform:
+'400007042':
+ :text: Musikbibl.P 47
+ :tag: 852$d
+ :transform:
+'400007018':
+ :text: Musikbibl.P 7
+ :tag: 852$d
+ :transform:
+'400007019':
+ :text: Musikbibl.P 9
+ :tag: 852$d
+ :transform:
+'400007043':
+ :text: Musikbibl.R 11
+ :tag: 852$d
+ :transform:
+'400007047':
+ :text: Musikbibl.R 21
+ :tag: 852$d
+ :transform:
+'400007044':
+ :text: Musikbibl.R 22
+ :tag: 852$d
+ :transform:
+'400007045':
+ :text: Musikbibl.R 23
+ :tag: 852$d
+ :transform:
+'400007046':
+ :text: Musikbibl.R 24
+ :tag: 852$d
+ :transform:
+'400007048':
+ :text: Musikbibl.R 26
+ :tag: 852$d
+ :transform:
+'400007049':
+ :text: Musikbibl.R 27
+ :tag: 852$d
+ :transform:
+'400007050':
+ :text: Musikbibl.R 38
+ :tag: 852$d
+ :transform:
+'400007051':
+ :text: Musikbibl.R 39
+ :tag: 852$d
+ :transform:
+'400007060':
+ :text: Musikbibl.S 10
+ :tag: 852$d
+ :transform:
+'400007061':
+ :text: Musikbibl.S 11
+ :tag: 852$d
+ :transform:
+'400007062':
+ :text: Musikbibl.S 12
+ :tag: 852$d
+ :transform:
+'400007052':
+ :text: Musikbibl.S 2
+ :tag: 852$d
+ :transform:
+'400007053':
+ :text: Musikbibl.S 3
+ :tag: 852$d
+ :transform:
+'400004940':
+ :text: Musikbibl.S 38
+ :tag: 852$d
+ :transform:
+'400004941':
+ :text: Musikbibl.S 38
+ :tag: 852$d
+ :transform:
+'400004942':
+ :text: Musikbibl.S 38
+ :tag: 852$d
+ :transform:
+'400004943':
+ :text: Musikbibl.S 38
+ :tag: 852$d
+ :transform:
+'400004944':
+ :text: Musikbibl.S 38
+ :tag: 852$d
+ :transform:
+'400004945':
+ :text: Musikbibl.S 38
+ :tag: 852$d
+ :transform:
+'400004946':
+ :text: Musikbibl.S 38
+ :tag: 852$d
+ :transform:
+'400007063':
+ :text: Musikbibl.S 38
+ :tag: 852$d
+ :transform:
+'400007086':
+ :text: Musikbibl.S 39
+ :tag: 852$d
+ :transform:
+'400004934':
+ :text: Musikbibl.S 4
+ :tag: 852$d
+ :transform:
+'400004935':
+ :text: Musikbibl.S 4
+ :tag: 852$d
+ :transform:
+'400004936':
+ :text: Musikbibl.S 4
+ :tag: 852$d
+ :transform:
+'400004937':
+ :text: Musikbibl.S 4
+ :tag: 852$d
+ :transform:
+'400004938':
+ :text: Musikbibl.S 4
+ :tag: 852$d
+ :transform:
+'400004939':
+ :text: Musikbibl.S 4
+ :tag: 852$d
+ :transform:
+'400007054':
+ :text: Musikbibl.S 4
+ :tag: 852$d
+ :transform:
+'400007064':
+ :text: Musikbibl.S 40
+ :tag: 852$d
+ :transform:
+'400007065':
+ :text: Musikbibl.S 45
+ :tag: 852$d
+ :transform:
+'400007066':
+ :text: Musikbibl.S 46
+ :tag: 852$d
+ :transform:
+'400007068':
+ :text: Musikbibl.S 48
+ :tag: 852$d
+ :transform:
+'400007069':
+ :text: Musikbibl.S 48b
+ :tag: 852$d
+ :transform:
+'400007070':
+ :text: Musikbibl.S 49
+ :tag: 852$d
+ :transform:
+'400007071':
+ :text: Musikbibl.S 50
+ :tag: 852$d
+ :transform:
+'400007072':
+ :text: Musikbibl.S 51
+ :tag: 852$d
+ :transform:
+'400007073':
+ :text: Musikbibl.S 52
+ :tag: 852$d
+ :transform:
+'400007074':
+ :text: Musikbibl.S 53
+ :tag: 852$d
+ :transform:
+'400007075':
+ :text: Musikbibl.S 54
+ :tag: 852$d
+ :transform:
+'400193066':
+ :text: Musikbibl.S 54
+ :tag: 852$d
+ :transform:
+'400193067':
+ :text: Musikbibl.S 54
+ :tag: 852$d
+ :transform:
+'400193068':
+ :text: Musikbibl.S 54
+ :tag: 852$d
+ :transform:
+'400193069':
+ :text: Musikbibl.S 54
+ :tag: 852$d
+ :transform:
+'400193070':
+ :text: Musikbibl.S 54
+ :tag: 852$d
+ :transform:
+'400193071':
+ :text: Musikbibl.S 54
+ :tag: 852$d
+ :transform:
+'400004947':
+ :text: Musikbibl.S 55
+ :tag: 852$d
+ :transform:
+'400004948':
+ :text: Musikbibl.S 55
+ :tag: 852$d
+ :transform:
+'400004949':
+ :text: Musikbibl.S 55
+ :tag: 852$d
+ :transform:
+'400007076':
+ :text: Musikbibl.S 55
+ :tag: 852$d
+ :transform:
+'400004950':
+ :text: Musikbibl.S 56
+ :tag: 852$d
+ :transform:
+'400004951':
+ :text: Musikbibl.S 56
+ :tag: 852$d
+ :transform:
+'400004952':
+ :text: Musikbibl.S 56
+ :tag: 852$d
+ :transform:
+'400007077':
+ :text: Musikbibl.S 56
+ :tag: 852$d
+ :transform:
+'400004962':
+ :text: Musikbibl.S 57
+ :tag: 852$d
+ :transform:
+'400004963':
+ :text: Musikbibl.S 57
+ :tag: 852$d
+ :transform:
+'400007078':
+ :text: Musikbibl.S 57
+ :tag: 852$d
+ :transform:
+'400007079':
+ :text: Musikbibl.S 58
+ :tag: 852$d
+ :transform:
+'400007055':
+ :text: Musikbibl.S 6
+ :tag: 852$d
+ :transform:
+'400113038':
+ :text: Musikbibl.S 62
+ :tag: 852$d
+ :transform:
+'400007081':
+ :text: Musikbibl.S 65
+ :tag: 852$d
+ :transform:
+'400007083':
+ :text: Musikbibl.S 67
+ :tag: 852$d
+ :transform:
+'400007084':
+ :text: Musikbibl.S 68
+ :tag: 852$d
+ :transform:
+'400007085':
+ :text: Musikbibl.S 69
+ :tag: 852$d
+ :transform:
+'400007056':
+ :text: Musikbibl.S 7
+ :tag: 852$d
+ :transform:
+'400007057':
+ :text: Musikbibl.S 7a
+ :tag: 852$d
+ :transform:
+'400007058':
+ :text: Musikbibl.S 8
+ :tag: 852$d
+ :transform:
+'400007087':
+ :text: Musikbibl.S 82
+ :tag: 852$d
+ :transform:
+'400111834':
+ :text: Musikbibl.S 83
+ :tag: 852$d
+ :transform:
+'400112766':
+ :text: Musikbibl.S 83
+ :tag: 852$d
+ :transform:
+'400007059':
+ :text: Musikbibl.S 9
+ :tag: 852$d
+ :transform:
+'400007067':
+ :text: Musikbibl.Sch 1
+ :tag: 852$d
+ :transform:
+'400007097':
+ :text: Musikbibl.T 10
+ :tag: 852$d
+ :transform:
+'400007091':
+ :text: Musikbibl.T 4
+ :tag: 852$d
+ :transform:
+'400007090':
+ :text: Musikbibl.T 4a
+ :tag: 852$d
+ :transform:
+'400007092':
+ :text: Musikbibl.T 5
+ :tag: 852$d
+ :transform:
+'400007093':
+ :text: Musikbibl.T 6
+ :tag: 852$d
+ :transform:
+'400007094':
+ :text: Musikbibl.T 7
+ :tag: 852$d
+ :transform:
+'400007095':
+ :text: Musikbibl.T 8
+ :tag: 852$d
+ :transform:
+'400007096':
+ :text: Musikbibl.T 9
+ :tag: 852$d
+ :transform:
+'400007098':
+ :text: Musikbibl.U 1
+ :tag: 852$d
+ :transform:
+'400007099':
+ :text: Musikbibl.U 2
+ :tag: 852$d
+ :transform:
+'400193072':
+ :text: Musikbibl.U 2
+ :tag: 852$d
+ :transform:
+'400193073':
+ :text: Musikbibl.U 2
+ :tag: 852$d
+ :transform:
+'400007100':
+ :text: Musikbibl.U 3
+ :tag: 852$d
+ :transform:
+'400007101':
+ :text: Musikbibl.U 4
+ :tag: 852$d
+ :transform:
+'400007102':
+ :text: Musikbibl.V 29
+ :tag: 852$d
+ :transform:
+'400007103':
+ :text: Musikbibl.V 31
+ :tag: 852$d
+ :transform:
+'400007105':
+ :text: Musikbibl.V 32
+ :tag: 852$d
+ :transform:
+'400007108':
+ :text: Musikbibl.W 10
+ :tag: 852$d
+ :transform:
+'400007109':
+ :text: Musikbibl.W 11
+ :tag: 852$d
+ :transform:
+'400007110':
+ :text: Musikbibl.W 17
+ :tag: 852$d
+ :transform:
+'400007111':
+ :text: Musikbibl.W 19
+ :tag: 852$d
+ :transform:
+'400007114':
+ :text: Musikbibl.W 28
+ :tag: 852$d
+ :transform:
+'400007112':
+ :text: Musikbibl.W 29
+ :tag: 852$d
+ :transform:
+'400007115':
+ :text: Musikbibl.W 30
+ :tag: 852$d
+ :transform:
+'400007116':
+ :text: Musikbibl.W 32
+ :tag: 852$d
+ :transform:
+'400007113':
+ :text: Musikbibl.W 33
+ :tag: 852$d
+ :transform:
+'400007117':
+ :text: Musikbibl.W 38
+ :tag: 852$d
+ :transform:
+'400007118':
+ :text: Musikbibl.W 39
+ :tag: 852$d
+ :transform:
+'400007119':
+ :text: Musikbibl.W 4
+ :tag: 852$d
+ :transform:
+'400007106':
+ :text: Musikbibl.W 8
+ :tag: 852$d
+ :transform:
+'400007107':
+ :text: Musikbibl.W 9
+ :tag: 852$d
+ :transform:
+'400007123':
+ :text: Musikbibl.Z 1
+ :tag: 852$d
+ :transform:
+'400007124':
+ :text: Musikbibl.Z 2
+ :tag: 852$d
+ :transform:
+'402006567':
+ :text: N 15
+ :tag: 852$d
+ :transform:
+'409003455':
+ :text: N 2.
+ :tag: 852$d
+ :transform:
+'400196107':
+ :text: N|r|o 25
+ :tag: 852$d
+ :transform:
+'400196113':
+ :text: N 28.
+ :tag: 852$d
+ :transform:
+'402006147':
+ :text: N 29c
+ :tag: 852$d
+ :transform:
+'400196108':
+ :text: N|r|o 33.
+ :tag: 852$d
+ :transform:
+'402006646':
+ :text: No 24
+ :tag: 852$d
+ :transform:
+'400055971':
+ :text: N 4a
+ :tag: 852$d
+ :transform:
+'400196110':
+ :text: N, 9.
+ :tag: 852$d
+ :transform:
+'400011983':
+ :text: n.
+ :tag: 852$d
+ :transform:
+'401000498':
+ :text: N. 1
+ :tag: 852$d
+ :transform:
+'400014692':
+ :text: N. 11.
+ :tag: 852$d
+ :transform:
+'401000703':
+ :text: N. 13
+ :tag: 852$d
+ :transform:
+'400056178':
+ :text: N. 15
+ :tag: 852$d
+ :transform:
+'409003406':
+ :text: N. 16.
+ :tag: 852$d
+ :transform:
+'401000488':
+ :text: N. 18
+ :tag: 852$d
+ :transform:
+'401000199':
+ :text: N. 2
+ :tag: 852$d
+ :transform:
+'400057125':
+ :text: no. 6
+ :tag: 852$d
+ :transform:
+'409003432':
+ :text: N|r|o 18. [vl 1]
+ :tag: 852$d
+ :transform:
+'401000433':
+ :text: N. 5
+ :tag: 852$d
+ :transform:
+'401000434':
+ :text: N. 6
+ :tag: 852$d
+ :transform:
+'400056179':
+ :text: N. IX
+ :tag: 852$d
+ :transform:
+'400216114':
+ :text: No.320
+ :tag: 852$d
+ :transform:
+'402006586':
+ :text: N|o 1 C
+ :tag: 852$d
+ :transform:
+'402006577':
+ :text: N|o 1.
+ :tag: 852$d
+ :transform:
+'409003398':
+ :text: N|o 1.
+ :tag: 852$d
+ :transform:
+'400107011':
+ :text: N|o 23a
+ :tag: 852$d
+ :transform:
+'402006572':
+ :text: N|o 10
+ :tag: 852$d
+ :transform:
+'402006579':
+ :text: N|o 10 a.
+ :tag: 852$d
+ :transform:
+'402006291':
+ :text: N|o 10 M
+ :tag: 852$d
+ :transform:
+'409003403':
+ :text: N|o 10.
+ :tag: 852$d
+ :transform:
+'400056014':
+ :text: N|o 10c
+ :tag: 852$d
+ :transform:
+'400056030':
+ :text: N|o 10c
+ :tag: 852$d
+ :transform:
+'400055989':
+ :text: N|o 11a
+ :tag: 852$d
+ :transform:
+'400107009':
+ :text: N|o 36a
+ :tag: 852$d
+ :transform:
+'400056035':
+ :text: N|o 12C
+ :tag: 852$d
+ :transform:
+'409003446':
+ :text: N|o 13.
+ :tag: 852$d
+ :transform:
+'400167206':
+ :text: N|o 138.
+ :tag: 852$d
+ :transform:
+'400167202':
+ :text: N|o 139.
+ :tag: 852$d
+ :transform:
+'400056031':
+ :text: N|o 13a
+ :tag: 852$d
+ :transform:
+'400056004':
+ :text: N|o 14
+ :tag: 852$d
+ :transform:
+'402006231':
+ :text: N|o 14
+ :tag: 852$d
+ :transform:
+'409003454':
+ :text: N|o 14.
+ :tag: 852$d
+ :transform:
+'400167200':
+ :text: N|o 140.
+ :tag: 852$d
+ :transform:
+'400167203':
+ :text: N|o 141.
+ :tag: 852$d
+ :transform:
+'400167204':
+ :text: N|o 142.
+ :tag: 852$d
+ :transform:
+'400167205':
+ :text: N|o 146.
+ :tag: 852$d
+ :transform:
+'400055996':
+ :text: N|o 14a
+ :tag: 852$d
+ :transform:
+'402006228':
+ :text: N|o 15
+ :tag: 852$d
+ :transform:
+'402006568':
+ :text: N|o 15 a
+ :tag: 852$d
+ :transform:
+'409003434':
+ :text: N|r|o 22
+ :tag: 852$d
+ :transform:
+'409003435':
+ :text: N|o 17
+ :tag: 852$d
+ :transform:
+'400056017':
+ :text: N|o 17c
+ :tag: 852$d
+ :transform:
+'402006229':
+ :text: N|o 18.
+ :tag: 852$d
+ :transform:
+'400056028':
+ :text: N|o 18a
+ :tag: 852$d
+ :transform:
+'400056021':
+ :text: N|o 18c
+ :tag: 852$d
+ :transform:
+'400056009':
+ :text: N|o 19a
+ :tag: 852$d
+ :transform:
+'400056000':
+ :text: N|o 19c
+ :tag: 852$d
+ :transform:
+'400055972':
+ :text: N|o 1a
+ :tag: 852$d
+ :transform:
+'402006230':
+ :text: N|o 2.
+ :tag: 852$d
+ :transform:
+'402006576':
+ :text: N|o 2.
+ :tag: 852$d
+ :transform:
+'409003402':
+ :text: N|o 2.
+ :tag: 852$d
+ :transform:
+'400107149':
+ :text: N|o 20 1/2 C
+ :tag: 852$d
+ :transform:
+'402006232':
+ :text: N|o 20.
+ :tag: 852$d
+ :transform:
+'400107114':
+ :text: N|o 20.a
+ :tag: 852$d
+ :transform:
+'400107042':
+ :text: N|o 21c
+ :tag: 852$d
+ :transform:
+'402006270':
+ :text: N|o 22.
+ :tag: 852$d
+ :transform:
+'400056003':
+ :text: N|o 22c
+ :tag: 852$d
+ :transform:
+'400007913':
+ :text: N|o 24
+ :tag: 852$d
+ :transform:
+'409003430':
+ :text: N|o 24.
+ :tag: 852$d
+ :transform:
+'400056013':
+ :text: No 6M
+ :tag: 852$d
+ :transform:
+'402006580':
+ :text: N|o 25.
+ :tag: 852$d
+ :transform:
+'400055984':
+ :text: N|o 26a
+ :tag: 852$d
+ :transform:
+'400107058':
+ :text: N|o 26a
+ :tag: 852$d
+ :transform:
+'400056012':
+ :text: N|o 26c
+ :tag: 852$d
+ :transform:
+'400107001':
+ :text: N|o 27c
+ :tag: 852$d
+ :transform:
+'402006353':
+ :text: N|o 28 a
+ :tag: 852$d
+ :transform:
+'402006360':
+ :text: No 25 a
+ :tag: 852$d
+ :transform:
+'402006361':
+ :text: No 24 a
+ :tag: 852$d
+ :transform:
+'402006362':
+ :text: N|o 8 c
+ :tag: 852$d
+ :transform:
+'400056039':
+ :text: N|o 29a
+ :tag: 852$d
+ :transform:
+'400055990':
+ :text: N|o 3a
+ :tag: 852$d
+ :transform:
+'400055973':
+ :text: N|o 2a
+ :tag: 852$d
+ :transform:
+'400107057':
+ :text: N|o 40a
+ :tag: 852$d
+ :transform:
+'402006582':
+ :text: N|o 3.
+ :tag: 852$d
+ :transform:
+'400056026':
+ :text: N|o 30a
+ :tag: 852$d
+ :transform:
+'400107033':
+ :text: N|o 30c
+ :tag: 852$d
+ :transform:
+'409003429':
+ :text: N|o 31.
+ :tag: 852$d
+ :transform:
+'402006585':
+ :text: N|o 32 C
+ :tag: 852$d
+ :transform:
+'400056025':
+ :text: N|o 4M
+ :tag: 852$d
+ :transform:
+'402006319':
+ :text: N|o 32a
+ :tag: 852$d
+ :transform:
+'402006352':
+ :text: N|o 33 c
+ :tag: 852$d
+ :transform:
+'400098598':
+ :text: N|o 33./75.
+ :tag: 852$d
+ :transform:
+'400098599':
+ :text: N|o 33./75.
+ :tag: 852$d
+ :transform:
+'400098600':
+ :text: N|o 33./75.
+ :tag: 852$d
+ :transform:
+'400098601':
+ :text: N|o 33./75.
+ :tag: 852$d
+ :transform:
+'400098602':
+ :text: N|o 33./75.
+ :tag: 852$d
+ :transform:
+'400056034':
+ :text: N|o 33a
+ :tag: 852$d
+ :transform:
+'400055997':
+ :text: N|o 37a
+ :tag: 852$d
+ :transform:
+'409003438':
+ :text: N|o 38.
+ :tag: 852$d
+ :transform:
+'409003404':
+ :text: N|o 39.
+ :tag: 852$d
+ :transform:
+'400055993':
+ :text: N|o 39a
+ :tag: 852$d
+ :transform:
+'400055977':
+ :text: N|o 3a
+ :tag: 852$d
+ :transform:
+'402006574':
+ :text: N|o 4.
+ :tag: 852$d
+ :transform:
+'409003457':
+ :text: N|o 4.
+ :tag: 852$d
+ :transform:
+'400055994':
+ :text: N|o 40
+ :tag: 852$d
+ :transform:
+'400055975':
+ :text: N|o 41a
+ :tag: 852$d
+ :transform:
+'400196115':
+ :text: N|o 42.
+ :tag: 852$d
+ :transform:
+'400056007':
+ :text: N|o 43a
+ :tag: 852$d
+ :transform:
+'402006320':
+ :text: N|o 45 a
+ :tag: 852$d
+ :transform:
+'400055982':
+ :text: N|o 46a
+ :tag: 852$d
+ :transform:
+'400056005':
+ :text: N|o 49
+ :tag: 852$d
+ :transform:
+'400055986':
+ :text: N|o 4a
+ :tag: 852$d
+ :transform:
+'409003439':
+ :text: N|o 6.
+ :tag: 852$d
+ :transform:
+'402006573':
+ :text: N|o 7.
+ :tag: 852$d
+ :transform:
+'409003445':
+ :text: N|o 7.
+ :tag: 852$d
+ :transform:
+'400056213':
+ :text: N|o 8
+ :tag: 852$d
+ :transform:
+'402006571':
+ :text: N|o 8.
+ :tag: 852$d
+ :transform:
+'402006588':
+ :text: N|o 8.
+ :tag: 852$d
+ :transform:
+'402006590':
+ :text: N|o 8.
+ :tag: 852$d
+ :transform:
+'400056010':
+ :text: N|o 8a
+ :tag: 852$d
+ :transform:
+'402006575':
+ :text: N|o 9.
+ :tag: 852$d
+ :transform:
+'409003407':
+ :text: N|o 9.
+ :tag: 852$d
+ :transform:
+'409003453':
+ :text: N|o 9.
+ :tag: 852$d
+ :transform:
+'400014668':
+ :text: N|o 94
+ :tag: 852$d
+ :transform:
+'400055980':
+ :text: N|o 9a
+ :tag: 852$d
+ :transform:
+'400056027':
+ :text: N|o 9a
+ :tag: 852$d
+ :transform:
+'410001105':
+ :text: N|o. 192.
+ :tag: 852$d
+ :transform:
+'409003436':
+ :text: N|r|o 2[1?]
+ :tag: 852$d
+ :transform:
+'400196111':
+ :text: N|r|o 20.
+ :tag: 852$d
+ :transform:
+'409003437':
+ :text: N|r|o 22.
+ :tag: 852$d
+ :transform:
+'400196112':
+ :text: N|r|o 27.
+ :tag: 852$d
+ :transform:
+'400196114':
+ :text: N|r|o 30.
+ :tag: 852$d
+ :transform:
+'401000446':
+ :text: No 10
+ :tag: 852$d
+ :transform:
+'400055988':
+ :text: No 10a
+ :tag: 852$d
+ :transform:
+'401000442':
+ :text: No 12
+ :tag: 852$d
+ :transform:
+'400055987':
+ :text: No 12a
+ :tag: 852$d
+ :transform:
+'402006502':
+ :text: No 13 C
+ :tag: 852$d
+ :transform:
+'402006528':
+ :text: No 13a
+ :tag: 852$d
+ :transform:
+'402006446':
+ :text: No 14 C
+ :tag: 852$d
+ :transform:
+'401000460':
+ :text: No 15
+ :tag: 852$d
+ :transform:
+'402006312':
+ :text: No 16 a
+ :tag: 852$d
+ :transform:
+'400055969':
+ :text: No 17a
+ :tag: 852$d
+ :transform:
+'400055992':
+ :text: No 19a
+ :tag: 852$d
+ :transform:
+'402006527':
+ :text: No 2a
+ :tag: 852$d
+ :transform:
+'401000469':
+ :text: No 2
+ :tag: 852$d
+ :transform:
+'400196122':
+ :text: No 2.
+ :tag: 852$d
+ :transform:
+'400107010':
+ :text: No 20
+ :tag: 852$d
+ :transform:
+'400055967':
+ :text: No 23a
+ :tag: 852$d
+ :transform:
+'402006447':
+ :text: No 25 c
+ :tag: 852$d
+ :transform:
+'402006435':
+ :text: No 31 c
+ :tag: 852$d
+ :transform:
+'400107000':
+ :text: No 3a
+ :tag: 852$d
+ :transform:
+'402006437':
+ :text: No 4 c
+ :tag: 852$d
+ :transform:
+'401000577':
+ :text: No 41
+ :tag: 852$d
+ :transform:
+'400057124':
+ :text: No 58
+ :tag: 852$d
+ :transform:
+'400056029':
+ :text: No 5c
+ :tag: 852$d
+ :transform:
+'400055979':
+ :text: No 6a
+ :tag: 852$d
+ :transform:
+'402006443':
+ :text: No 6c
+ :tag: 852$d
+ :transform:
+'400055978':
+ :text: No 7a
+ :tag: 852$d
+ :transform:
+'400056038':
+ :text: No 7c
+ :tag: 852$d
+ :transform:
+'400055981':
+ :text: No 8a
+ :tag: 852$d
+ :transform:
+'400056002':
+ :text: No 8M
+ :tag: 852$d
+ :transform:
+'402006450':
+ :text: No 9c
+ :tag: 852$d
+ :transform:
+'400196109':
+ :text: 'No: 6'
+ :tag: 852$d
+ :transform:
+'400006388':
+ :text: No. 1
+ :tag: 852$d
+ :transform:
+'400006777':
+ :text: No. 10
+ :tag: 852$d
+ :transform:
+'400008049':
+ :text: No. 88
+ :tag: 852$d
+ :transform:
+'400007884':
+ :text: No. 101
+ :tag: 852$d
+ :transform:
+'400008209':
+ :text: No. 103
+ :tag: 852$d
+ :transform:
+'400007996':
+ :text: No. 1030
+ :tag: 852$d
+ :transform:
+'400008140':
+ :text: No. 1075
+ :tag: 852$d
+ :transform:
+'400196224':
+ :text: No. 11
+ :tag: 852$d
+ :transform:
+'401000423':
+ :text: No. 11
+ :tag: 852$d
+ :transform:
+'400008401':
+ :text: No. 1101
+ :tag: 852$d
+ :transform:
+'400007931':
+ :text: No. 1121
+ :tag: 852$d
+ :transform:
+'400007999':
+ :text: No. 113
+ :tag: 852$d
+ :transform:
+'406002168':
+ :text: No. 12
+ :tag: 852$d
+ :transform:
+'406002169':
+ :text: No. 12
+ :tag: 852$d
+ :transform:
+'406002170':
+ :text: No. 12
+ :tag: 852$d
+ :transform:
+'406002171':
+ :text: No. 12
+ :tag: 852$d
+ :transform:
+'406002172':
+ :text: No. 12
+ :tag: 852$d
+ :transform:
+'406002173':
+ :text: No. 12
+ :tag: 852$d
+ :transform:
+'406002174':
+ :text: No. 12
+ :tag: 852$d
+ :transform:
+'400216116':
+ :text: No. 124
+ :tag: 852$d
+ :transform:
+'400006659':
+ :text: No. 13
+ :tag: 852$d
+ :transform:
+'400006661':
+ :text: No. 14
+ :tag: 852$d
+ :transform:
+'401000454':
+ :text: No. 14
+ :tag: 852$d
+ :transform:
+'400167143':
+ :text: No. 149
+ :tag: 852$d
+ :transform:
+'400006711':
+ :text: No. 15
+ :tag: 852$d
+ :transform:
+'400006707':
+ :text: No. 16
+ :tag: 852$d
+ :transform:
+'401000453':
+ :text: No. 18
+ :tag: 852$d
+ :transform:
+'400167144':
+ :text: No. 407
+ :tag: 852$d
+ :transform:
+'400006710':
+ :text: No. 19
+ :tag: 852$d
+ :transform:
+'400006658':
+ :text: No. 2
+ :tag: 852$d
+ :transform:
+'401000520':
+ :text: No. 2
+ :tag: 852$d
+ :transform:
+'400006708':
+ :text: No. 20
+ :tag: 852$d
+ :transform:
+'400006709':
+ :text: No. 21
+ :tag: 852$d
+ :transform:
+'400008210':
+ :text: 'Th: 10'
+ :tag: 852$d
+ :transform:
+'400006414':
+ :text: No. 22
+ :tag: 852$d
+ :transform:
+'400008247':
+ :text: No. 37
+ :tag: 852$d
+ :transform:
+'400006411':
+ :text: No. 23
+ :tag: 852$d
+ :transform:
+'400006415':
+ :text: No. 24
+ :tag: 852$d
+ :transform:
+'400006412':
+ :text: No. 25
+ :tag: 852$d
+ :transform:
+'400008269':
+ :text: No. 25
+ :tag: 852$d
+ :transform:
+'400006416':
+ :text: No. 26
+ :tag: 852$d
+ :transform:
+'400196241':
+ :text: No. 26.
+ :tag: 852$d
+ :transform:
+'400006413':
+ :text: No. 27
+ :tag: 852$d
+ :transform:
+'400006410':
+ :text: No. 28
+ :tag: 852$d
+ :transform:
+'400008184':
+ :text: No. 28
+ :tag: 852$d
+ :transform:
+'400006409':
+ :text: No. 29
+ :tag: 852$d
+ :transform:
+'400006784':
+ :text: No. 3
+ :tag: 852$d
+ :transform:
+'400007961':
+ :text: No. 3.a
+ :tag: 852$d
+ :transform:
+'400006408':
+ :text: No. 30
+ :tag: 852$d
+ :transform:
+'400006749':
+ :text: No. 31
+ :tag: 852$d
+ :transform:
+'400006611':
+ :text: No. 33
+ :tag: 852$d
+ :transform:
+'400006746':
+ :text: No. 34
+ :tag: 852$d
+ :transform:
+'400006750':
+ :text: No. 36
+ :tag: 852$d
+ :transform:
+'400008211':
+ :text: No. 366
+ :tag: 852$d
+ :transform:
+'400008246':
+ :text: No. 368
+ :tag: 852$d
+ :transform:
+'400167154':
+ :text: No. 36B
+ :tag: 852$d
+ :transform:
+'400006696':
+ :text: No. 37
+ :tag: 852$d
+ :transform:
+'400008089':
+ :text: No. 379
+ :tag: 852$d
+ :transform:
+'400216118':
+ :text: No. 382
+ :tag: 852$d
+ :transform:
+'400006673':
+ :text: No. 39
+ :tag: 852$d
+ :transform:
+'400006387':
+ :text: No. 4
+ :tag: 852$d
+ :transform:
+'400006753':
+ :text: No. 40
+ :tag: 852$d
+ :transform:
+'400196226':
+ :text: No. 40.
+ :tag: 852$d
+ :transform:
+'400006382':
+ :text: No. 41
+ :tag: 852$d
+ :transform:
+'400008162':
+ :text: No. 41
+ :tag: 852$d
+ :transform:
+'400008388':
+ :text: No. 410
+ :tag: 852$d
+ :transform:
+'400006375':
+ :text: No. 42
+ :tag: 852$d
+ :transform:
+'400008364':
+ :text: No. 42
+ :tag: 852$d
+ :transform:
+'400007924':
+ :text: No. 422
+ :tag: 852$d
+ :transform:
+'400008061':
+ :text: No. 439
+ :tag: 852$d
+ :transform:
+'400006472':
+ :text: No. 44
+ :tag: 852$d
+ :transform:
+'400006474':
+ :text: No. 45
+ :tag: 852$d
+ :transform:
+'400008155':
+ :text: No. 450
+ :tag: 852$d
+ :transform:
+'400008216':
+ :text: No. 453
+ :tag: 852$d
+ :transform:
+'400008062':
+ :text: No. 457
+ :tag: 852$d
+ :transform:
+'400006469':
+ :text: No. 46
+ :tag: 852$d
+ :transform:
+'400008148':
+ :text: No. 462
+ :tag: 852$d
+ :transform:
+'400006743':
+ :text: No. 48
+ :tag: 852$d
+ :transform:
+'400008154':
+ :text: No. 484
+ :tag: 852$d
+ :transform:
+'400006477':
+ :text: No. 49
+ :tag: 852$d
+ :transform:
+'400007851':
+ :text: No. 491
+ :tag: 852$d
+ :transform:
+'400007975':
+ :text: No. 499
+ :tag: 852$d
+ :transform:
+'400006386':
+ :text: No. 5
+ :tag: 852$d
+ :transform:
+'400008366':
+ :text: No. 5
+ :tag: 852$d
+ :transform:
+'400061362':
+ :text: No. 5
+ :tag: 852$d
+ :transform:
+'400007908':
+ :text: No. 5.F 9
+ :tag: 852$d
+ :transform:
+'400006473':
+ :text: No. 50
+ :tag: 852$d
+ :transform:
+'400008079':
+ :text: No. 500
+ :tag: 852$d
+ :transform:
+'400008151':
+ :text: No. 506
+ :tag: 852$d
+ :transform:
+'400008150':
+ :text: No. 507
+ :tag: 852$d
+ :transform:
+'400008149':
+ :text: No. 508
+ :tag: 852$d
+ :transform:
+'400006319':
+ :text: No. 51
+ :tag: 852$d
+ :transform:
+'400008248':
+ :text: No. 518
+ :tag: 852$d
+ :transform:
+'400006610':
+ :text: No. 52
+ :tag: 852$d
+ :transform:
+'400006609':
+ :text: No. 53
+ :tag: 852$d
+ :transform:
+'400008243':
+ :text: No. 53
+ :tag: 852$d
+ :transform:
+'400007869':
+ :text: No.VII
+ :tag: 852$d
+ :transform:
+'400007875':
+ :text: No. 533
+ :tag: 852$d
+ :transform:
+'400007870':
+ :text: No. 535
+ :tag: 852$d
+ :transform:
+'400007874':
+ :text: No. 536
+ :tag: 852$d
+ :transform:
+'400006671':
+ :text: No. 54
+ :tag: 852$d
+ :transform:
+'400007885':
+ :text: No. 544
+ :tag: 852$d
+ :transform:
+'400007898':
+ :text: No. 545
+ :tag: 852$d
+ :transform:
+'400006607':
+ :text: No. 55
+ :tag: 852$d
+ :transform:
+'400006748':
+ :text: No. 56
+ :tag: 852$d
+ :transform:
+'400007846':
+ :text: No. 56
+ :tag: 852$d
+ :transform:
+'400007956':
+ :text: No. 562
+ :tag: 852$d
+ :transform:
+'400006697':
+ :text: No. 57
+ :tag: 852$d
+ :transform:
+'400006612':
+ :text: No. 58
+ :tag: 852$d
+ :transform:
+'400008180':
+ :text: No. 58
+ :tag: 852$d
+ :transform:
+'400007979':
+ :text: No. 580
+ :tag: 852$d
+ :transform:
+'400007981':
+ :text: No. 581
+ :tag: 852$d
+ :transform:
+'400007982':
+ :text: No. 7
+ :tag: 852$d
+ :transform:
+'400006606':
+ :text: No. 59
+ :tag: 852$d
+ :transform:
+'400006536':
+ :text: No. 6
+ :tag: 852$d
+ :transform:
+'400006674':
+ :text: No. 60
+ :tag: 852$d
+ :transform:
+'400008119':
+ :text: No. 60
+ :tag: 852$d
+ :transform:
+'400008060':
+ :text: No. 610
+ :tag: 852$d
+ :transform:
+'400008066':
+ :text: No.I
+ :tag: 852$d
+ :transform:
+'400008064':
+ :text: No.XII
+ :tag: 852$d
+ :transform:
+'400008063':
+ :text: No. 614
+ :tag: 852$d
+ :transform:
+'400008065':
+ :text: No. 615
+ :tag: 852$d
+ :transform:
+'400008093':
+ :text: No.IV
+ :tag: 852$d
+ :transform:
+'400008092':
+ :text: No.X
+ :tag: 852$d
+ :transform:
+'400008091':
+ :text: No.II
+ :tag: 852$d
+ :transform:
+'400008094':
+ :text: No. 619
+ :tag: 852$d
+ :transform:
+'400008404':
+ :text: No. 62
+ :tag: 852$d
+ :transform:
+'406002182':
+ :text: No. 62
+ :tag: 852$d
+ :transform:
+'400006379':
+ :text: No. 63
+ :tag: 852$d
+ :transform:
+'406002167':
+ :text: No. 63
+ :tag: 852$d
+ :transform:
+'400008108':
+ :text: No. 635
+ :tag: 852$d
+ :transform:
+'400008109':
+ :text: No. 638
+ :tag: 852$d
+ :transform:
+'400008116':
+ :text: No. 639
+ :tag: 852$d
+ :transform:
+'400006523':
+ :text: No. 64
+ :tag: 852$d
+ :transform:
+'400008214':
+ :text: No. 64
+ :tag: 852$d
+ :transform:
+'400008115':
+ :text: No. 640
+ :tag: 852$d
+ :transform:
+'400008111':
+ :text: No. 641
+ :tag: 852$d
+ :transform:
+'400008118':
+ :text: No. 642
+ :tag: 852$d
+ :transform:
+'400008117':
+ :text: No. 643
+ :tag: 852$d
+ :transform:
+'400008113':
+ :text: No. 644
+ :tag: 852$d
+ :transform:
+'400008114':
+ :text: No. 645
+ :tag: 852$d
+ :transform:
+'400008129':
+ :text: No. 647
+ :tag: 852$d
+ :transform:
+'400008130':
+ :text: No. 648
+ :tag: 852$d
+ :transform:
+'400006672':
+ :text: No. 65
+ :tag: 852$d
+ :transform:
+'400008102':
+ :text: No. 65
+ :tag: 852$d
+ :transform:
+'400006377':
+ :text: No. 66
+ :tag: 852$d
+ :transform:
+'400008201':
+ :text: No. 660
+ :tag: 852$d
+ :transform:
+'400008221':
+ :text: No. 661
+ :tag: 852$d
+ :transform:
+'400008227':
+ :text: No. 665
+ :tag: 852$d
+ :transform:
+'400008222':
+ :text: No. 666
+ :tag: 852$d
+ :transform:
+'400008225':
+ :text: No. 669
+ :tag: 852$d
+ :transform:
+'400006475':
+ :text: No. 67
+ :tag: 852$d
+ :transform:
+'400008228':
+ :text: No. 670
+ :tag: 852$d
+ :transform:
+'400008223':
+ :text: No. 671
+ :tag: 852$d
+ :transform:
+'400008226':
+ :text: No. 672
+ :tag: 852$d
+ :transform:
+'400006778':
+ :text: No. 68
+ :tag: 852$d
+ :transform:
+'400008112':
+ :text: No. 688
+ :tag: 852$d
+ :transform:
+'400006782':
+ :text: No. 69
+ :tag: 852$d
+ :transform:
+'400006370':
+ :text: No. 7
+ :tag: 852$d
+ :transform:
+'401000458':
+ :text: No. 7
+ :tag: 852$d
+ :transform:
+'400006781':
+ :text: No. 70
+ :tag: 852$d
+ :transform:
+'400008213':
+ :text: No. 70
+ :tag: 852$d
+ :transform:
+'400008250':
+ :text: No. 700
+ :tag: 852$d
+ :transform:
+'400006779':
+ :text: No. 71
+ :tag: 852$d
+ :transform:
+'400006741':
+ :text: No. 72
+ :tag: 852$d
+ :transform:
+'400008414':
+ :text: No.V
+ :tag: 852$d
+ :transform:
+'400006476':
+ :text: No. 73
+ :tag: 852$d
+ :transform:
+'400006670':
+ :text: No. 74
+ :tag: 852$d
+ :transform:
+'400006780':
+ :text: No. 75
+ :tag: 852$d
+ :transform:
+'400006699':
+ :text: No. 76
+ :tag: 852$d
+ :transform:
+'400008138':
+ :text: No. 764
+ :tag: 852$d
+ :transform:
+'400006378':
+ :text: No. 77
+ :tag: 852$d
+ :transform:
+'400008219':
+ :text: No. 775
+ :tag: 852$d
+ :transform:
+'400006376':
+ :text: No. 78
+ :tag: 852$d
+ :transform:
+'400006470':
+ :text: No. 79
+ :tag: 852$d
+ :transform:
+'400008266':
+ :text: No. 799
+ :tag: 852$d
+ :transform:
+'400006471':
+ :text: No. 80
+ :tag: 852$d
+ :transform:
+'400006744':
+ :text: No. 81
+ :tag: 852$d
+ :transform:
+'400007963':
+ :text: No. 81
+ :tag: 852$d
+ :transform:
+'400006608':
+ :text: No. 82
+ :tag: 852$d
+ :transform:
+'400006747':
+ :text: No. 83
+ :tag: 852$d
+ :transform:
+'400008110':
+ :text: No. 837
+ :tag: 852$d
+ :transform:
+'400008384':
+ :text: No. 84
+ :tag: 852$d
+ :transform:
+'400007969':
+ :text: No. 85
+ :tag: 852$d
+ :transform:
+'400006381':
+ :text: No. 86
+ :tag: 852$d
+ :transform:
+'400006383':
+ :text: No. 87
+ :tag: 852$d
+ :transform:
+'400007971':
+ :text: No. 87
+ :tag: 852$d
+ :transform:
+'400006380':
+ :text: No. 88
+ :tag: 852$d
+ :transform:
+'400006519':
+ :text: No. 89
+ :tag: 852$d
+ :transform:
+'400008426':
+ :text: No. 89
+ :tag: 852$d
+ :transform:
+'400008147':
+ :text: No. 899
+ :tag: 852$d
+ :transform:
+'400006660':
+ :text: No. 9
+ :tag: 852$d
+ :transform:
+'400167147':
+ :text: No. 9
+ :tag: 852$d
+ :transform:
+'400006783':
+ :text: No. 90
+ :tag: 852$d
+ :transform:
+'400006621':
+ :text: No. 91
+ :tag: 852$d
+ :transform:
+'400008378':
+ :text: No. 91
+ :tag: 852$d
+ :transform:
+'400006559':
+ :text: No. 92
+ :tag: 852$d
+ :transform:
+'400007847':
+ :text: No. 98
+ :tag: 852$d
+ :transform:
+'400167179':
+ :text: No.122.
+ :tag: 852$d
+ :transform:
+'400167193':
+ :text: No.112.
+ :tag: 852$d
+ :transform:
+'400167159':
+ :text: No.114. (litt. gg.)
+ :tag: 852$d
+ :transform:
+'400167168':
+ :text: No.115.
+ :tag: 852$d
+ :transform:
+'400167173':
+ :text: No.40.
+ :tag: 852$d
+ :transform:
+'400216110':
+ :text: No.120.
+ :tag: 852$d
+ :transform:
+'400167171':
+ :text: No.121.
+ :tag: 852$d
+ :transform:
+'400167164':
+ :text: No.123.
+ :tag: 852$d
+ :transform:
+'400196123':
+ :text: No.13.
+ :tag: 852$d
+ :transform:
+'400167162':
+ :text: No.161
+ :tag: 852$d
+ :transform:
+'400196245':
+ :text: No.17.
+ :tag: 852$d
+ :transform:
+'400167194':
+ :text: No.19 C.
+ :tag: 852$d
+ :transform:
+'400216205':
+ :text: No.226.
+ :tag: 852$d
+ :transform:
+'400216212':
+ :text: No.227.
+ :tag: 852$d
+ :transform:
+'400216213':
+ :text: No.228.
+ :tag: 852$d
+ :transform:
+'400216214':
+ :text: No.229.
+ :tag: 852$d
+ :transform:
+'400216215':
+ :text: No.230.
+ :tag: 852$d
+ :transform:
+'400216216':
+ :text: No.231.
+ :tag: 852$d
+ :transform:
+'400216211':
+ :text: No.232.
+ :tag: 852$d
+ :transform:
+'400216206':
+ :text: No.233
+ :tag: 852$d
+ :transform:
+'400216207':
+ :text: No.234.
+ :tag: 852$d
+ :transform:
+'400216208':
+ :text: No.235.
+ :tag: 852$d
+ :transform:
+'400216209':
+ :text: No.236.
+ :tag: 852$d
+ :transform:
+'400216210':
+ :text: No.237.
+ :tag: 852$d
+ :transform:
+'400167214':
+ :text: No.3
+ :tag: 852$d
+ :transform:
+'400167165':
+ :text: No.8.
+ :tag: 852$d
+ :transform:
+'400167175':
+ :text: No.3.
+ :tag: 852$d
+ :transform:
+'400196103':
+ :text: No.7.
+ :tag: 852$d
+ :transform:
+'400167185':
+ :text: No.87.A.
+ :tag: 852$d
+ :transform:
+'400216117':
+ :text: No.89.
+ :tag: 852$d
+ :transform:
+'400167196':
+ :text: No.9.B.
+ :tag: 852$d
+ :transform:
+'400100147':
+ :text: Nr. 38
+ :tag: 852$d
+ :transform:
+'401000436':
+ :text: Nro 12
+ :tag: 852$d
+ :transform:
+'401000476':
+ :text: Nro 251
+ :tag: 852$d
+ :transform:
+'401000416':
+ :text: Nro. 1
+ :tag: 852$d
+ :transform:
+'401000435':
+ :text: Nro. 13
+ :tag: 852$d
+ :transform:
+'401000417':
+ :text: Nro. 335
+ :tag: 852$d
+ :transform:
+'400008411':
+ :text: olim[MGZ]No. 1188
+ :tag: 852$d
+ :transform:
+'400003930':
+ :text: Op II a 5
+ :tag: 852$d
+ :transform:
+'400003929':
+ :text: Op II c 3
+ :tag: 852$d
+ :transform:
+'400003928':
+ :text: Op II c 4
+ :tag: 852$d
+ :transform:
+'400003931':
+ :text: Op II e 2
+ :tag: 852$d
+ :transform:
+'400105057':
+ :text: P. n. 2
+ :tag: 852$d
+ :transform:
+'410000681':
+ :text: PA A 03.26/1
+ :tag: 852$d
+ :transform:
+'410000770':
+ :text: PA A 03.26/10
+ :tag: 852$d
+ :transform:
+'410000769':
+ :text: PA A 03.26/10-13
+ :tag: 852$d
+ :transform:
+'410000776':
+ :text: PA A 03.26/11
+ :tag: 852$d
+ :transform:
+'410000779':
+ :text: PA A 03.26/11
+ :tag: 852$d
+ :transform:
+'410000777':
+ :text: PA A 03.26/12
+ :tag: 852$d
+ :transform:
+'410000778':
+ :text: PA A 03.26/13
+ :tag: 852$d
+ :transform:
+'410000783':
+ :text: PA A 03.26/14
+ :tag: 852$d
+ :transform:
+'410000780':
+ :text: PA A 03.26/14-15
+ :tag: 852$d
+ :transform:
+'410000784':
+ :text: PA A 03.26/15
+ :tag: 852$d
+ :transform:
+'410000787':
+ :text: PA A 03.26/16
+ :tag: 852$d
+ :transform:
+'410000793':
+ :text: PA A 03.26/17
+ :tag: 852$d
+ :transform:
+'410000794':
+ :text: PA A 03.26/18
+ :tag: 852$d
+ :transform:
+'410000795':
+ :text: PA A 03.26/21
+ :tag: 852$d
+ :transform:
+'410000796':
+ :text: PA A 03.26/19
+ :tag: 852$d
+ :transform:
+'410000682':
+ :text: PA A 03.26/2
+ :tag: 852$d
+ :transform:
+'410000798':
+ :text: PA A 03.26/20
+ :tag: 852$d
+ :transform:
+'410000799':
+ :text: PA A 03.26/20
+ :tag: 852$d
+ :transform:
+'410000800':
+ :text: PA A 03.26/20
+ :tag: 852$d
+ :transform:
+'410000801':
+ :text: PA A 03.26/20
+ :tag: 852$d
+ :transform:
+'410000802':
+ :text: PA A 03.26/20
+ :tag: 852$d
+ :transform:
+'410000803':
+ :text: PA A 03.26/20
+ :tag: 852$d
+ :transform:
+'410000804':
+ :text: PA A 03.26/20
+ :tag: 852$d
+ :transform:
+'410000797':
+ :text: PA A 03.26/21
+ :tag: 852$d
+ :transform:
+'410000805':
+ :text: PA A 03.26/22
+ :tag: 852$d
+ :transform:
+'410000806':
+ :text: PA A 03.26/23
+ :tag: 852$d
+ :transform:
+'410000807':
+ :text: PA A 03.26/24
+ :tag: 852$d
+ :transform:
+'410000808':
+ :text: PA A 03.26/26
+ :tag: 852$d
+ :transform:
+'410000810':
+ :text: PA A 03.26/25
+ :tag: 852$d
+ :transform:
+'410000809':
+ :text: PA A 03.26/26
+ :tag: 852$d
+ :transform:
+'410000811':
+ :text: PA A 03.26/27
+ :tag: 852$d
+ :transform:
+'410000812':
+ :text: PA A 03.26/28
+ :tag: 852$d
+ :transform:
+'410000813':
+ :text: PA A 03.26/29
+ :tag: 852$d
+ :transform:
+'410000683':
+ :text: PA A 03.26/3
+ :tag: 852$d
+ :transform:
+'410000814':
+ :text: PA A 03.26/30
+ :tag: 852$d
+ :transform:
+'410000815':
+ :text: PA A 03.26/31
+ :tag: 852$d
+ :transform:
+'410000816':
+ :text: PA A 03.26/32
+ :tag: 852$d
+ :transform:
+'410000817':
+ :text: PA A 03.26/33
+ :tag: 852$d
+ :transform:
+'410000818':
+ :text: PA A 03.26/34
+ :tag: 852$d
+ :transform:
+'410000877':
+ :text: PA A 03.26/35
+ :tag: 852$d
+ :transform:
+'410000878':
+ :text: PA A 03.26/34
+ :tag: 852$d
+ :transform:
+'410000879':
+ :text: PA A 03.26/35
+ :tag: 852$d
+ :transform:
+'410000880':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000881':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000882':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000884':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000886':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000888':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000890':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000891':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000892':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000893':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000894':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000896':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000898':
+ :text: PA A 03.26/36
+ :tag: 852$d
+ :transform:
+'410000953':
+ :text: PA A 03.26/37
+ :tag: 852$d
+ :transform:
+'410001014':
+ :text: PA A 03.26/38
+ :tag: 852$d
+ :transform:
+'410000684':
+ :text: PA A 03.26/4
+ :tag: 852$d
+ :transform:
+'410000685':
+ :text: PA A 03.26/5
+ :tag: 852$d
+ :transform:
+'410000766':
+ :text: PA A 03.26/6
+ :tag: 852$d
+ :transform:
+'410000767':
+ :text: PA A 03.26/7
+ :tag: 852$d
+ :transform:
+'410000952':
+ :text: PA A 03.26/8
+ :tag: 852$d
+ :transform:
+'410000768':
+ :text: PA A 03.26/9
+ :tag: 852$d
+ :transform:
+'410000904':
+ :text: PA A 03.27/39
+ :tag: 852$d
+ :transform:
+'410000905':
+ :text: PA A 03.27/40
+ :tag: 852$d
+ :transform:
+'410000906':
+ :text: PA A 03.27/41
+ :tag: 852$d
+ :transform:
+'410000907':
+ :text: PA A 03.27/42
+ :tag: 852$d
+ :transform:
+'410000908':
+ :text: PA A 03.27/43
+ :tag: 852$d
+ :transform:
+'410000909':
+ :text: PA A 03.28/44
+ :tag: 852$d
+ :transform:
+'410000910':
+ :text: PA A 03.28/45
+ :tag: 852$d
+ :transform:
+'410000911':
+ :text: PA A 03.28/46
+ :tag: 852$d
+ :transform:
+'410000912':
+ :text: PA A 03.28/47
+ :tag: 852$d
+ :transform:
+'410000946':
+ :text: PA A 03.29/48
+ :tag: 852$d
+ :transform:
+'410000947':
+ :text: PA A 03.29/49
+ :tag: 852$d
+ :transform:
+'410000948':
+ :text: PA A 03.29/50
+ :tag: 852$d
+ :transform:
+'410000950':
+ :text: PA A 03.29/50
+ :tag: 852$d
+ :transform:
+'410000951':
+ :text: PA A 03.29/51
+ :tag: 852$d
+ :transform:
+'410000954':
+ :text: PA A 03.29/52
+ :tag: 852$d
+ :transform:
+'410000955':
+ :text: PA A 03.29/52
+ :tag: 852$d
+ :transform:
+'410000956':
+ :text: PA A 03.29/53
+ :tag: 852$d
+ :transform:
+'410000957':
+ :text: PA A 03.29/54
+ :tag: 852$d
+ :transform:
+'410000958':
+ :text: PA A 03.29/55
+ :tag: 852$d
+ :transform:
+'410000959':
+ :text: PA A 03.29/56
+ :tag: 852$d
+ :transform:
+'410000960':
+ :text: PA A 03.29/57
+ :tag: 852$d
+ :transform:
+'410000961':
+ :text: PA A 03.29/58
+ :tag: 852$d
+ :transform:
+'410000962':
+ :text: PA A 03.30/59
+ :tag: 852$d
+ :transform:
+'410000963':
+ :text: PA A 03.30/59
+ :tag: 852$d
+ :transform:
+'410000964':
+ :text: PA A 03.30/59
+ :tag: 852$d
+ :transform:
+'410000965':
+ :text: PA A 03.30/59
+ :tag: 852$d
+ :transform:
+'410000966':
+ :text: PA A 03.30/59
+ :tag: 852$d
+ :transform:
+'410000967':
+ :text: PA A 03.30/60
+ :tag: 852$d
+ :transform:
+'410000968':
+ :text: PA A 03.30/60
+ :tag: 852$d
+ :transform:
+'410001095':
+ :text: PA A 03.30/61
+ :tag: 852$d
+ :transform:
+'410000969':
+ :text: PA A 03.30/62
+ :tag: 852$d
+ :transform:
+'410000983':
+ :text: PA A 03.30/62
+ :tag: 852$d
+ :transform:
+'410000984':
+ :text: PA A 03.30/63
+ :tag: 852$d
+ :transform:
+'410000990':
+ :text: PA A 03.30/64
+ :tag: 852$d
+ :transform:
+'410000999':
+ :text: PA A 03.30/65
+ :tag: 852$d
+ :transform:
+'410001000':
+ :text: PA A 03.30/65
+ :tag: 852$d
+ :transform:
+'410001001':
+ :text: PA A 03.30/65
+ :tag: 852$d
+ :transform:
+'410001002':
+ :text: PA A 03.31/67
+ :tag: 852$d
+ :transform:
+'410001012':
+ :text: PA A 03.32/68
+ :tag: 852$d
+ :transform:
+'407002907':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002908':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002909':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002910':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002911':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002912':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002913':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002914':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002915':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002916':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002917':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002918':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002919':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002920':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002921':
+ :text: PA H 02.01.02/1a
+ :tag: 852$d
+ :transform:
+'407002925':
+ :text: PA H 02.01.02/3
+ :tag: 852$d
+ :transform:
+'407002926':
+ :text: PA H 02.01.02/3
+ :tag: 852$d
+ :transform:
+'407002927':
+ :text: PA H 02.01.02/3
+ :tag: 852$d
+ :transform:
+'407002928':
+ :text: PA H 02.01.02/3
+ :tag: 852$d
+ :transform:
+'407002929':
+ :text: PA H 02.01.02/3
+ :tag: 852$d
+ :transform:
+'407002930':
+ :text: PA H 02.01.02/3
+ :tag: 852$d
+ :transform:
+'407003095':
+ :text: PA H 02.01.02/3
+ :tag: 852$d
+ :transform:
+'407002922':
+ :text: PA H 02.01.02/4
+ :tag: 852$d
+ :transform:
+'407002932':
+ :text: PA H 02.01.02/5
+ :tag: 852$d
+ :transform:
+'407002933':
+ :text: PA H 02.01.02/6
+ :tag: 852$d
+ :transform:
+'407002903':
+ :text: PA H 02.01.03/1
+ :tag: 852$d
+ :transform:
+'407002904':
+ :text: PA H 02.01.03/2
+ :tag: 852$d
+ :transform:
+'407002893':
+ :text: PA H 02.01.03/3
+ :tag: 852$d
+ :transform:
+'407002905':
+ :text: PA H 02.01.03/4
+ :tag: 852$d
+ :transform:
+'407002906':
+ :text: PA H 02.01.03/5
+ :tag: 852$d
+ :transform:
+'407002886':
+ :text: PA H 02.02.01/1
+ :tag: 852$d
+ :transform:
+'407002887':
+ :text: PA H 02.02.01/2
+ :tag: 852$d
+ :transform:
+'407002888':
+ :text: PA H 02.02.01/3
+ :tag: 852$d
+ :transform:
+'407002889':
+ :text: PA H 02.02.01/4
+ :tag: 852$d
+ :transform:
+'407002890':
+ :text: PA H 02.02.01/5
+ :tag: 852$d
+ :transform:
+'407002891':
+ :text: PA H 02.02.02/1
+ :tag: 852$d
+ :transform:
+'407002892':
+ :text: PA H 02.02.02/2
+ :tag: 852$d
+ :transform:
+'407002894':
+ :text: PA H 02.02.02/3
+ :tag: 852$d
+ :transform:
+'407002895':
+ :text: PA H 02.02.02/3
+ :tag: 852$d
+ :transform:
+'407002896':
+ :text: PA H 02.02.02/3
+ :tag: 852$d
+ :transform:
+'407002897':
+ :text: PA H 02.02.02/3
+ :tag: 852$d
+ :transform:
+'407002898':
+ :text: PA H 02.02.02/3
+ :tag: 852$d
+ :transform:
+'407002899':
+ :text: PA H 02.02.02/3
+ :tag: 852$d
+ :transform:
+'407002900':
+ :text: PA H 02.02.04
+ :tag: 852$d
+ :transform:
+'407002901':
+ :text: PA H 02.02.05/1
+ :tag: 852$d
+ :transform:
+'407002902':
+ :text: PA H 02.02.05/2
+ :tag: 852$d
+ :transform:
+'407002966':
+ :text: PA H 02.03.01/1
+ :tag: 852$d
+ :transform:
+'407002934':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002935':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002936':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002937':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002938':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002939':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002940':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002941':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002942':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002943':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002944':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002945':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002946':
+ :text: PA H 02.03.01/2
+ :tag: 852$d
+ :transform:
+'407002947':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002948':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002949':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002950':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002951':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002952':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002953':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002954':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002955':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002956':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002957':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002958':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002959':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002960':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002961':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002962':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002963':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407003112':
+ :text: PA H 02.03.01/3
+ :tag: 852$d
+ :transform:
+'407002923':
+ :text: PA H 02.03.01/4
+ :tag: 852$d
+ :transform:
+'407002964':
+ :text: PA H 02.03.01/5
+ :tag: 852$d
+ :transform:
+'407002965':
+ :text: PA H 02.03.01/6
+ :tag: 852$d
+ :transform:
+'407002924':
+ :text: PA H 02.03.01/7
+ :tag: 852$d
+ :transform:
+'407002967':
+ :text: PA H 02.03.02/1
+ :tag: 852$d
+ :transform:
+'407002968':
+ :text: PA H 02.03.02/2
+ :tag: 852$d
+ :transform:
+'407002969':
+ :text: PA H 02.03.02/2
+ :tag: 852$d
+ :transform:
+'407002970':
+ :text: PA H 02.03.02/2
+ :tag: 852$d
+ :transform:
+'407002971':
+ :text: PA H 02.03.02/2
+ :tag: 852$d
+ :transform:
+'407002972':
+ :text: PA H 02.03.02/3
+ :tag: 852$d
+ :transform:
+'407002973':
+ :text: PA H 02.03.02/4
+ :tag: 852$d
+ :transform:
+'407002974':
+ :text: PA H 02.03.02/4
+ :tag: 852$d
+ :transform:
+'407002975':
+ :text: PA H 02.03.02/5
+ :tag: 852$d
+ :transform:
+'407002976':
+ :text: PA H 02.03.02/5
+ :tag: 852$d
+ :transform:
+'407002977':
+ :text: PA H 02.03.02/5
+ :tag: 852$d
+ :transform:
+'407002978':
+ :text: PA H 02.03.02/5
+ :tag: 852$d
+ :transform:
+'407002979':
+ :text: PA H 02.03.02/5
+ :tag: 852$d
+ :transform:
+'407002986':
+ :text: PA H 02.03.05/2
+ :tag: 852$d
+ :transform:
+'407002760':
+ :text: PA H 02.03/06
+ :tag: 852$d
+ :transform:
+'407002762':
+ :text: PA H 02.04.02-16
+ :tag: 852$d
+ :transform:
+'407002761':
+ :text: PA H 02.04.02-3
+ :tag: 852$d
+ :transform:
+'407002728':
+ :text: PA H 02.04.02/01
+ :tag: 852$d
+ :transform:
+'407002729':
+ :text: PA H 02.04.02/01
+ :tag: 852$d
+ :transform:
+'407002730':
+ :text: PA H 02.04.02/01
+ :tag: 852$d
+ :transform:
+'407002731':
+ :text: PA H 02.04.02/01
+ :tag: 852$d
+ :transform:
+'407002732':
+ :text: PA H 02.04.02/02
+ :tag: 852$d
+ :transform:
+'407002733':
+ :text: PA H 02.04.02/03a
+ :tag: 852$d
+ :transform:
+'407002734':
+ :text: PA H 02.04.02/04
+ :tag: 852$d
+ :transform:
+'407002735':
+ :text: PA H 02.04.02/05
+ :tag: 852$d
+ :transform:
+'407002736':
+ :text: PA H 02.04.02/06
+ :tag: 852$d
+ :transform:
+'407002737':
+ :text: PA H 02.04.02/06
+ :tag: 852$d
+ :transform:
+'407002745':
+ :text: PA H 02.04.02/06
+ :tag: 852$d
+ :transform:
+'407002738':
+ :text: PA H 02.04.02/07
+ :tag: 852$d
+ :transform:
+'407002739':
+ :text: PA H 02.04.02/07
+ :tag: 852$d
+ :transform:
+'407002740':
+ :text: PA H 02.04.02/07
+ :tag: 852$d
+ :transform:
+'407002741':
+ :text: PA H 02.04.02/07
+ :tag: 852$d
+ :transform:
+'407002742':
+ :text: PA H 02.04.02/07
+ :tag: 852$d
+ :transform:
+'407002743':
+ :text: PA H 02.04.02/07
+ :tag: 852$d
+ :transform:
+'407002744':
+ :text: PA H 02.04.02/07
+ :tag: 852$d
+ :transform:
+'407002746':
+ :text: PA H 02.04.02/09
+ :tag: 852$d
+ :transform:
+'407002747':
+ :text: PA H 02.04.02/09
+ :tag: 852$d
+ :transform:
+'407002748':
+ :text: PA H 02.04.02/09
+ :tag: 852$d
+ :transform:
+'407002749':
+ :text: PA H 02.04.02/10
+ :tag: 852$d
+ :transform:
+'407002750':
+ :text: PA H 02.04.02/11
+ :tag: 852$d
+ :transform:
+'407002751':
+ :text: PA H 02.04.02/12
+ :tag: 852$d
+ :transform:
+'407002752':
+ :text: PA H 02.04.02/13
+ :tag: 852$d
+ :transform:
+'407002753':
+ :text: PA H 02.04.02/14
+ :tag: 852$d
+ :transform:
+'407002754':
+ :text: PA H 02.04.02/16
+ :tag: 852$d
+ :transform:
+'407002755':
+ :text: PA H 02.04.02/17
+ :tag: 852$d
+ :transform:
+'407002686':
+ :text: PA H 02.04.03/01
+ :tag: 852$d
+ :transform:
+'407002687':
+ :text: PA H 02.04.03/02
+ :tag: 852$d
+ :transform:
+'407002688':
+ :text: PA H 02.04.03/03
+ :tag: 852$d
+ :transform:
+'407002689':
+ :text: PA H 02.04.03/03
+ :tag: 852$d
+ :transform:
+'407002690':
+ :text: PA H 02.04.03/03
+ :tag: 852$d
+ :transform:
+'407002630':
+ :text: PA H 02.04.03/04c
+ :tag: 852$d
+ :transform:
+'407002691':
+ :text: PA H 02.04.03/05a
+ :tag: 852$d
+ :transform:
+'407002692':
+ :text: PA H 02.04.03/05a
+ :tag: 852$d
+ :transform:
+'407002693':
+ :text: PA H 02.04.03/05a
+ :tag: 852$d
+ :transform:
+'407002694':
+ :text: PA H 02.04.03/05a
+ :tag: 852$d
+ :transform:
+'407002695':
+ :text: PA H 02.04.03/05a
+ :tag: 852$d
+ :transform:
+'407002696':
+ :text: PA H 02.04.03/06
+ :tag: 852$d
+ :transform:
+'407002697':
+ :text: PA H 02.04.03/08
+ :tag: 852$d
+ :transform:
+'407002698':
+ :text: PA H 02.04.03/09
+ :tag: 852$d
+ :transform:
+'407002700':
+ :text: PA H 02.04.03/12
+ :tag: 852$d
+ :transform:
+'407002709':
+ :text: PA H 02.04.03/16
+ :tag: 852$d
+ :transform:
+'407002710':
+ :text: PA H 02.04.03/16a
+ :tag: 852$d
+ :transform:
+'407002699':
+ :text: PA H 02.04.03/16b
+ :tag: 852$d
+ :transform:
+'407002631':
+ :text: PA H 02.04/03/07
+ :tag: 852$d
+ :transform:
+'407002632':
+ :text: PA H 02.04/03/07
+ :tag: 852$d
+ :transform:
+'407002633':
+ :text: PA H 02.04/03/07
+ :tag: 852$d
+ :transform:
+'407002634':
+ :text: PA H 02.04/03/07
+ :tag: 852$d
+ :transform:
+'407002635':
+ :text: PA H 02.04/03/07
+ :tag: 852$d
+ :transform:
+'407002636':
+ :text: PA H 02.04/03/07
+ :tag: 852$d
+ :transform:
+'407002637':
+ :text: PA H 02.04/03/07
+ :tag: 852$d
+ :transform:
+'407002638':
+ :text: PA H 02.04/03/07
+ :tag: 852$d
+ :transform:
+'407002639':
+ :text: PA H 02.04/03/10
+ :tag: 852$d
+ :transform:
+'407002640':
+ :text: PA H 02.04/03/11
+ :tag: 852$d
+ :transform:
+'407002641':
+ :text: PA H 02.04/03/13
+ :tag: 852$d
+ :transform:
+'407002642':
+ :text: PA H 02.04/03/14
+ :tag: 852$d
+ :transform:
+'407002643':
+ :text: PA H 02.04/03/14
+ :tag: 852$d
+ :transform:
+'407002629':
+ :text: PA H 02.04/3
+ :tag: 852$d
+ :transform:
+'407002606':
+ :text: PA H 02.05/1
+ :tag: 852$d
+ :transform:
+'407002607':
+ :text: PA H 02.05/2
+ :tag: 852$d
+ :transform:
+'407002608':
+ :text: PA H 02.05/3
+ :tag: 852$d
+ :transform:
+'407002614':
+ :text: PA H 02.05/5
+ :tag: 852$d
+ :transform:
+'407002609':
+ :text: PA H 02.06
+ :tag: 852$d
+ :transform:
+'407002610':
+ :text: PA H 02.07/1
+ :tag: 852$d
+ :transform:
+'407002611':
+ :text: PA H 02.07/2
+ :tag: 852$d
+ :transform:
+'407002612':
+ :text: PA H 02.07/3
+ :tag: 852$d
+ :transform:
+'407002613':
+ :text: PA H 02.07/4
+ :tag: 852$d
+ :transform:
+'407002615':
+ :text: PA H 02.07/6
+ :tag: 852$d
+ :transform:
+'407002616':
+ :text: PA H 02.07/7
+ :tag: 852$d
+ :transform:
+'407002617':
+ :text: PA H 02.07/8
+ :tag: 852$d
+ :transform:
+'407002618':
+ :text: PA H 02.08./1
+ :tag: 852$d
+ :transform:
+'407002619':
+ :text: PA H 02.08/2
+ :tag: 852$d
+ :transform:
+'407002620':
+ :text: PA H 02.08/3
+ :tag: 852$d
+ :transform:
+'407002622':
+ :text: PA H 02.08/4b
+ :tag: 852$d
+ :transform:
+'407002621':
+ :text: PA H 02.08/4c
+ :tag: 852$d
+ :transform:
+'407002623':
+ :text: PA H 02.08/5
+ :tag: 852$d
+ :transform:
+'407002624':
+ :text: PA H 02.08/6
+ :tag: 852$d
+ :transform:
+'407002625':
+ :text: PA H 02.08/7
+ :tag: 852$d
+ :transform:
+'407002626':
+ :text: PA H 02.08/8
+ :tag: 852$d
+ :transform:
+'407002628':
+ :text: PA H 02.08/9
+ :tag: 852$d
+ :transform:
+'407002644':
+ :text: PA H 02.09/01
+ :tag: 852$d
+ :transform:
+'407002645':
+ :text: PA H 02.09/01
+ :tag: 852$d
+ :transform:
+'407002646':
+ :text: PA H 02.09/01
+ :tag: 852$d
+ :transform:
+'407002647':
+ :text: PA H 02.09/01
+ :tag: 852$d
+ :transform:
+'407002756':
+ :text: PA H 02.09/02
+ :tag: 852$d
+ :transform:
+'407002757':
+ :text: PA H 02.09/02
+ :tag: 852$d
+ :transform:
+'407002758':
+ :text: PA H 02.09/02
+ :tag: 852$d
+ :transform:
+'407002759':
+ :text: PA H 02.09/02
+ :tag: 852$d
+ :transform:
+'407002648':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002649':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002650':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002651':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002652':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002653':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002654':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002655':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002656':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002657':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002658':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002659':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002660':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002661':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002662':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002663':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002664':
+ :text: PA H 02.09/03
+ :tag: 852$d
+ :transform:
+'407002665':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002666':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002667':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002668':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002669':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002670':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002671':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002672':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002673':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002674':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002675':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002676':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002677':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002678':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002679':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002680':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002681':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002682':
+ :text: PA H 02.09/04
+ :tag: 852$d
+ :transform:
+'407002683':
+ :text: PA H 02.09/05
+ :tag: 852$d
+ :transform:
+'407002684':
+ :text: PA H 02.09/05
+ :tag: 852$d
+ :transform:
+'407002685':
+ :text: PA H 02.09/05
+ :tag: 852$d
+ :transform:
+'407002711':
+ :text: PA H 02.09/06
+ :tag: 852$d
+ :transform:
+'407002712':
+ :text: PA H 02.09/06
+ :tag: 852$d
+ :transform:
+'407002713':
+ :text: PA H 02.09/06
+ :tag: 852$d
+ :transform:
+'407002714':
+ :text: PA H 02.09/06
+ :tag: 852$d
+ :transform:
+'407002715':
+ :text: PA H 02.09/06
+ :tag: 852$d
+ :transform:
+'407002716':
+ :text: PA H 02.09/06
+ :tag: 852$d
+ :transform:
+'407002717':
+ :text: PA H 02.09/06
+ :tag: 852$d
+ :transform:
+'407002718':
+ :text: PA H 02.09/06
+ :tag: 852$d
+ :transform:
+'407002719':
+ :text: PA H 02.09/07
+ :tag: 852$d
+ :transform:
+'407002720':
+ :text: PA H 02.09/07
+ :tag: 852$d
+ :transform:
+'407002721':
+ :text: PA H 02.09/07
+ :tag: 852$d
+ :transform:
+'407002722':
+ :text: PA H 02.09/07
+ :tag: 852$d
+ :transform:
+'407002723':
+ :text: PA H 02.09/07
+ :tag: 852$d
+ :transform:
+'407002724':
+ :text: PA H 02.09/07
+ :tag: 852$d
+ :transform:
+'407002725':
+ :text: PA H 02.09/07
+ :tag: 852$d
+ :transform:
+'407002726':
+ :text: PA H 02.09/07
+ :tag: 852$d
+ :transform:
+'407002701':
+ :text: PA H 02.09/08
+ :tag: 852$d
+ :transform:
+'407002702':
+ :text: PA H 02.09/08
+ :tag: 852$d
+ :transform:
+'407002703':
+ :text: PA H 02.09/08
+ :tag: 852$d
+ :transform:
+'407002704':
+ :text: PA H 02.09/08
+ :tag: 852$d
+ :transform:
+'407002705':
+ :text: PA H 02.09/08
+ :tag: 852$d
+ :transform:
+'407002706':
+ :text: PA H 02.09/08
+ :tag: 852$d
+ :transform:
+'407002707':
+ :text: PA H 02.09/08
+ :tag: 852$d
+ :transform:
+'407002708':
+ :text: PA H 02.09/08
+ :tag: 852$d
+ :transform:
+'407002884':
+ :text: PA H 02.09/09
+ :tag: 852$d
+ :transform:
+'407002763':
+ :text: PA H 02.11/01
+ :tag: 852$d
+ :transform:
+'407002764':
+ :text: PA H 02.11/02
+ :tag: 852$d
+ :transform:
+'407002765':
+ :text: PA H 02.11/03
+ :tag: 852$d
+ :transform:
+'407002766':
+ :text: PA H 02.11/04
+ :tag: 852$d
+ :transform:
+'407002767':
+ :text: PA H 02.11/05
+ :tag: 852$d
+ :transform:
+'407002768':
+ :text: PA H 02.11/06
+ :tag: 852$d
+ :transform:
+'407002777':
+ :text: PA H 02.11/07
+ :tag: 852$d
+ :transform:
+'407002778':
+ :text: PA H 02.11/08a
+ :tag: 852$d
+ :transform:
+'407002779':
+ :text: PA H 02.11/08a
+ :tag: 852$d
+ :transform:
+'407002780':
+ :text: PA H 02.11/08a
+ :tag: 852$d
+ :transform:
+'407002781':
+ :text: PA H 02.11/08a
+ :tag: 852$d
+ :transform:
+'407002782':
+ :text: PA H 02.11/08b
+ :tag: 852$d
+ :transform:
+'407002783':
+ :text: PA H 02.11/08b
+ :tag: 852$d
+ :transform:
+'407002784':
+ :text: PA H 02.11/08b
+ :tag: 852$d
+ :transform:
+'407002785':
+ :text: PA H 02.11/08b
+ :tag: 852$d
+ :transform:
+'407002786':
+ :text: PA H 02.11/08b
+ :tag: 852$d
+ :transform:
+'407002787':
+ :text: PA H 02.11/08b
+ :tag: 852$d
+ :transform:
+'407002788':
+ :text: PA H 02.11/08b
+ :tag: 852$d
+ :transform:
+'407002789':
+ :text: PA H 02.11/08b
+ :tag: 852$d
+ :transform:
+'407002790':
+ :text: PA H 02.11/08b
+ :tag: 852$d
+ :transform:
+'407002791':
+ :text: PA H 02.11/08b
+ :tag: 852$d
+ :transform:
+'407002792':
+ :text: PA H 02.11/09
+ :tag: 852$d
+ :transform:
+'407002793':
+ :text: PA H 02.11/10
+ :tag: 852$d
+ :transform:
+'407002794':
+ :text: PA H 02.11/11
+ :tag: 852$d
+ :transform:
+'407002795':
+ :text: PA H 02.11/12
+ :tag: 852$d
+ :transform:
+'407002796':
+ :text: PA H 02.11/13
+ :tag: 852$d
+ :transform:
+'407002797':
+ :text: PA H 02.11/14
+ :tag: 852$d
+ :transform:
+'407002800':
+ :text: PA H 02.11/15
+ :tag: 852$d
+ :transform:
+'407002798':
+ :text: PA H 02.11/16
+ :tag: 852$d
+ :transform:
+'407002799':
+ :text: PA H 02.11/17
+ :tag: 852$d
+ :transform:
+'407002801':
+ :text: PA H 02.11/18
+ :tag: 852$d
+ :transform:
+'407002805':
+ :text: PA H 02.11/18
+ :tag: 852$d
+ :transform:
+'407002806':
+ :text: PA H 02.11/18
+ :tag: 852$d
+ :transform:
+'407002807':
+ :text: PA H 02.11/18
+ :tag: 852$d
+ :transform:
+'407002878':
+ :text: PA H 02.11/18
+ :tag: 852$d
+ :transform:
+'407002879':
+ :text: PA H 02.11/18
+ :tag: 852$d
+ :transform:
+'407002802':
+ :text: PA H 02.11/18a
+ :tag: 852$d
+ :transform:
+'407002804':
+ :text: PA H 02.11/18b
+ :tag: 852$d
+ :transform:
+'407002808':
+ :text: PA H 02.11/18c
+ :tag: 852$d
+ :transform:
+'407002809':
+ :text: PA H 02.11/18d
+ :tag: 852$d
+ :transform:
+'407002810':
+ :text: PA H 02.11/18e
+ :tag: 852$d
+ :transform:
+'407002803':
+ :text: PA H 02.11/18f
+ :tag: 852$d
+ :transform:
+'407002811':
+ :text: PA H 02.11/18f
+ :tag: 852$d
+ :transform:
+'407002812':
+ :text: PA H 02.11/18f
+ :tag: 852$d
+ :transform:
+'407002813':
+ :text: PA H 02.11/18g
+ :tag: 852$d
+ :transform:
+'407002814':
+ :text: PA H 02.11/18h
+ :tag: 852$d
+ :transform:
+'407002815':
+ :text: PA H 02.11/18h
+ :tag: 852$d
+ :transform:
+'407002816':
+ :text: PA H 02.11/18h
+ :tag: 852$d
+ :transform:
+'407002817':
+ :text: PA H 02.11/18h
+ :tag: 852$d
+ :transform:
+'407002818':
+ :text: PA H 02.11/18h
+ :tag: 852$d
+ :transform:
+'407002819':
+ :text: PA H 02.11/18h
+ :tag: 852$d
+ :transform:
+'407002820':
+ :text: PA H 02.11/18h(?)
+ :tag: 852$d
+ :transform:
+'407002821':
+ :text: PA H 02.11/18h(?)
+ :tag: 852$d
+ :transform:
+'407002822':
+ :text: PA H 02.11/18h(?)
+ :tag: 852$d
+ :transform:
+'407002823':
+ :text: PA H 02.11/18i
+ :tag: 852$d
+ :transform:
+'407002824':
+ :text: PA H 02.11/18k
+ :tag: 852$d
+ :transform:
+'407002825':
+ :text: PA H 02.11/19
+ :tag: 852$d
+ :transform:
+'407002826':
+ :text: PA H 02.11/19
+ :tag: 852$d
+ :transform:
+'407002827':
+ :text: PA H 02.11/19
+ :tag: 852$d
+ :transform:
+'407002828':
+ :text: PA H 02.11/20
+ :tag: 852$d
+ :transform:
+'407002829':
+ :text: PA H 02.11/21
+ :tag: 852$d
+ :transform:
+'407002830':
+ :text: PA H 02.11/21
+ :tag: 852$d
+ :transform:
+'407002831':
+ :text: PA H 02.11/21
+ :tag: 852$d
+ :transform:
+'407002832':
+ :text: PA H 02.11/22
+ :tag: 852$d
+ :transform:
+'407002833':
+ :text: PA H 02.11/23
+ :tag: 852$d
+ :transform:
+'407002834':
+ :text: PA H 02.11/23
+ :tag: 852$d
+ :transform:
+'407002835':
+ :text: PA H 02.11/23
+ :tag: 852$d
+ :transform:
+'407002836':
+ :text: PA H 02.11/24
+ :tag: 852$d
+ :transform:
+'407002837':
+ :text: PA H 02.11/25
+ :tag: 852$d
+ :transform:
+'407002838':
+ :text: PA H 02.11/26
+ :tag: 852$d
+ :transform:
+'407002839':
+ :text: PA H 02.11/27
+ :tag: 852$d
+ :transform:
+'407002840':
+ :text: PA H 02.11/28
+ :tag: 852$d
+ :transform:
+'407002841':
+ :text: PA H 02.11/29
+ :tag: 852$d
+ :transform:
+'407002842':
+ :text: PA H 02.11/30
+ :tag: 852$d
+ :transform:
+'407002843':
+ :text: PA H 02.11/31
+ :tag: 852$d
+ :transform:
+'407002844':
+ :text: PA H 02.11/32
+ :tag: 852$d
+ :transform:
+'407002845':
+ :text: PA H 02.11/33
+ :tag: 852$d
+ :transform:
+'407002846':
+ :text: PA H 02.11/34
+ :tag: 852$d
+ :transform:
+'407002847':
+ :text: PA H 02.11/35
+ :tag: 852$d
+ :transform:
+'407002848':
+ :text: PA H 02.11/36
+ :tag: 852$d
+ :transform:
+'407002849':
+ :text: PA H 02.11/37
+ :tag: 852$d
+ :transform:
+'407002850':
+ :text: PA H 02.11/38
+ :tag: 852$d
+ :transform:
+'407002853':
+ :text: PA H 02.11/39a
+ :tag: 852$d
+ :transform:
+'407002854':
+ :text: PA H 02.11/39a
+ :tag: 852$d
+ :transform:
+'407002855':
+ :text: PA H 02.11/39a
+ :tag: 852$d
+ :transform:
+'407002851':
+ :text: PA H 02.11/39a-l
+ :tag: 852$d
+ :transform:
+'407002856':
+ :text: PA H 02.11/39b
+ :tag: 852$d
+ :transform:
+'407002857':
+ :text: PA H 02.11/39c
+ :tag: 852$d
+ :transform:
+'407002858':
+ :text: PA H 02.11/39d
+ :tag: 852$d
+ :transform:
+'407002859':
+ :text: PA H 02.11/39e
+ :tag: 852$d
+ :transform:
+'407002860':
+ :text: PA H 02.11/39f
+ :tag: 852$d
+ :transform:
+'407002861':
+ :text: PA H 02.11/39g
+ :tag: 852$d
+ :transform:
+'407002862':
+ :text: PA H 02.11/39h
+ :tag: 852$d
+ :transform:
+'407002863':
+ :text: PA H 02.11/39i
+ :tag: 852$d
+ :transform:
+'407002864':
+ :text: PA H 02.11/39k
+ :tag: 852$d
+ :transform:
+'407002865':
+ :text: PA H 02.11/39l
+ :tag: 852$d
+ :transform:
+'407002866':
+ :text: PA H 02.11/40
+ :tag: 852$d
+ :transform:
+'407002867':
+ :text: PA H 02.11/40
+ :tag: 852$d
+ :transform:
+'407002868':
+ :text: PA H 02.11/40
+ :tag: 852$d
+ :transform:
+'407002869':
+ :text: PA H 02.11/40
+ :tag: 852$d
+ :transform:
+'407002870':
+ :text: PA H 02.11/40
+ :tag: 852$d
+ :transform:
+'407002871':
+ :text: PA H 02.11/40
+ :tag: 852$d
+ :transform:
+'407002872':
+ :text: PA H 02.11/41
+ :tag: 852$d
+ :transform:
+'407002873':
+ :text: PA H 02.11/43
+ :tag: 852$d
+ :transform:
+'407002874':
+ :text: PA H 02.11/43
+ :tag: 852$d
+ :transform:
+'407002875':
+ :text: PA H 02.11/43
+ :tag: 852$d
+ :transform:
+'407002876':
+ :text: PA H 02.11/43
+ :tag: 852$d
+ :transform:
+'407002627':
+ :text: PA H 02.12/29b
+ :tag: 852$d
+ :transform:
+'407002769':
+ :text: PA H 02.13/01
+ :tag: 852$d
+ :transform:
+'407002770':
+ :text: PA H 02.13/02
+ :tag: 852$d
+ :transform:
+'407002771':
+ :text: PA H 02.13/02
+ :tag: 852$d
+ :transform:
+'407002772':
+ :text: PA H 02.13/02
+ :tag: 852$d
+ :transform:
+'407002773':
+ :text: PA H 02.13/02
+ :tag: 852$d
+ :transform:
+'407002774':
+ :text: PA H 02.13/03
+ :tag: 852$d
+ :transform:
+'407002775':
+ :text: PA H 02.13/04
+ :tag: 852$d
+ :transform:
+'407002727':
+ :text: PA H 02.13/07
+ :tag: 852$d
+ :transform:
+'407002883':
+ :text: PA H 02.13/08
+ :tag: 852$d
+ :transform:
+'407002880':
+ :text: PA H 02.13/09
+ :tag: 852$d
+ :transform:
+'407002776':
+ :text: PA H 02.13/10
+ :tag: 852$d
+ :transform:
+'407002881':
+ :text: PA H 02.13/11
+ :tag: 852$d
+ :transform:
+'407002882':
+ :text: PA H 02.13/12
+ :tag: 852$d
+ :transform:
+'407002407':
+ :text: PA H 02.16.04-1
+ :tag: 852$d
+ :transform:
+'407002408':
+ :text: PA H 02.16.04-1
+ :tag: 852$d
+ :transform:
+'407002409':
+ :text: PA H 02.16.04-1
+ :tag: 852$d
+ :transform:
+'407002410':
+ :text: PA H 02.16.04-1
+ :tag: 852$d
+ :transform:
+'407002517':
+ :text: PA H 02.16.04-12/1
+ :tag: 852$d
+ :transform:
+'407002528':
+ :text: PA H 02.16.04-12/10
+ :tag: 852$d
+ :transform:
+'407002529':
+ :text: PA H 02.16.04-12/11
+ :tag: 852$d
+ :transform:
+'407002518':
+ :text: PA H 02.16.04-12/2
+ :tag: 852$d
+ :transform:
+'407002519':
+ :text: PA H 02.16.04-12/3
+ :tag: 852$d
+ :transform:
+'407002520':
+ :text: PA H 02.16.04-12/4
+ :tag: 852$d
+ :transform:
+'407002521':
+ :text: PA H 02.16.04-12/5
+ :tag: 852$d
+ :transform:
+'407002522':
+ :text: PA H 02.16.04-12/6
+ :tag: 852$d
+ :transform:
+'407002526':
+ :text: PA H 02.16.04-12/8
+ :tag: 852$d
+ :transform:
+'407002527':
+ :text: PA H 02.16.04-12/9
+ :tag: 852$d
+ :transform:
+'407002411':
+ :text: PA H 02.16.04-2
+ :tag: 852$d
+ :transform:
+'407002412':
+ :text: PA H 02.16.04-2
+ :tag: 852$d
+ :transform:
+'407002413':
+ :text: PA H 02.16.04-2
+ :tag: 852$d
+ :transform:
+'407002414':
+ :text: PA H 02.16.04-3
+ :tag: 852$d
+ :transform:
+'407002415':
+ :text: PA H 02.16.04-3
+ :tag: 852$d
+ :transform:
+'407002416':
+ :text: PA H 02.16.04-3
+ :tag: 852$d
+ :transform:
+'407002417':
+ :text: PA H 02.16.04-3
+ :tag: 852$d
+ :transform:
+'407002418':
+ :text: PA H 02.16.04-4
+ :tag: 852$d
+ :transform:
+'407002419':
+ :text: PA H 02.16.04-5
+ :tag: 852$d
+ :transform:
+'407002420':
+ :text: PA H 02.16.04-6
+ :tag: 852$d
+ :transform:
+'407002421':
+ :text: PA H 02.16.04-7
+ :tag: 852$d
+ :transform:
+'407002422':
+ :text: PA H 02.16.04-8
+ :tag: 852$d
+ :transform:
+'407002423':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002424':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002425':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002426':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002427':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002428':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002429':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002430':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002431':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002432':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002433':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002434':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002435':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002436':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002437':
+ :text: PA H 02.16.05-1
+ :tag: 852$d
+ :transform:
+'407002503':
+ :text: PA H 02.16.05-10
+ :tag: 852$d
+ :transform:
+'407002504':
+ :text: PA H 02.16.05-10
+ :tag: 852$d
+ :transform:
+'407002505':
+ :text: PA H 02.16.05-10
+ :tag: 852$d
+ :transform:
+'407002506':
+ :text: PA H 02.16.05-10
+ :tag: 852$d
+ :transform:
+'407002507':
+ :text: PA H 02.16.05-10
+ :tag: 852$d
+ :transform:
+'407002508':
+ :text: PA H 02.16.05-10
+ :tag: 852$d
+ :transform:
+'407002509':
+ :text: PA H 02.16.05-10
+ :tag: 852$d
+ :transform:
+'407002510':
+ :text: PA H 02.16.05-10
+ :tag: 852$d
+ :transform:
+'407002511':
+ :text: PA H 02.16.05-10
+ :tag: 852$d
+ :transform:
+'407002512':
+ :text: PA H 02.16.05-10
+ :tag: 852$d
+ :transform:
+'407002513':
+ :text: PA H 02.16.05-10
+ :tag: 852$d
+ :transform:
+'407002514':
+ :text: PA H 02.16.05-11
+ :tag: 852$d
+ :transform:
+'407002515':
+ :text: PA H 02.16.05-11
+ :tag: 852$d
+ :transform:
+'407002516':
+ :text: PA H 02.16.05-11
+ :tag: 852$d
+ :transform:
+'407002885':
+ :text: PA H 02.16.05-11
+ :tag: 852$d
+ :transform:
+'407002530':
+ :text: PA H 02.16.05-12/12
+ :tag: 852$d
+ :transform:
+'407002531':
+ :text: PA H 02.16.05-12/12
+ :tag: 852$d
+ :transform:
+'407002532':
+ :text: PA H 02.16.05-12/12
+ :tag: 852$d
+ :transform:
+'407002533':
+ :text: PA H 02.16.05-12/13
+ :tag: 852$d
+ :transform:
+'407002534':
+ :text: PA H 02.16.05-12/13
+ :tag: 852$d
+ :transform:
+'407002535':
+ :text: PA H 02.16.05-12/13
+ :tag: 852$d
+ :transform:
+'407002536':
+ :text: PA H 02.16.05-12/13
+ :tag: 852$d
+ :transform:
+'407002537':
+ :text: PA H 02.16.05-12/14
+ :tag: 852$d
+ :transform:
+'407002538':
+ :text: PA H 02.16.05-12/14
+ :tag: 852$d
+ :transform:
+'407002539':
+ :text: PA H 02.16.05-12/14
+ :tag: 852$d
+ :transform:
+'407002540':
+ :text: PA H 02.16.05-12/15
+ :tag: 852$d
+ :transform:
+'407002541':
+ :text: PA H 02.16.05-12/15
+ :tag: 852$d
+ :transform:
+'407002542':
+ :text: PA H 02.16.05-12/15
+ :tag: 852$d
+ :transform:
+'407002543':
+ :text: PA H 02.16.05-12/15
+ :tag: 852$d
+ :transform:
+'407002544':
+ :text: PA H 02.16.05-12/15
+ :tag: 852$d
+ :transform:
+'407002545':
+ :text: PA H 02.16.05-12/15
+ :tag: 852$d
+ :transform:
+'407002546':
+ :text: PA H 02.16.05-12/15
+ :tag: 852$d
+ :transform:
+'407002523':
+ :text: PA H 02.16.05-12/7
+ :tag: 852$d
+ :transform:
+'407002524':
+ :text: PA H 02.16.05-12/7
+ :tag: 852$d
+ :transform:
+'407002525':
+ :text: PA H 02.16.05-12/7
+ :tag: 852$d
+ :transform:
+'407002547':
+ :text: PA H 02.16.05-13
+ :tag: 852$d
+ :transform:
+'407002548':
+ :text: PA H 02.16.05-13
+ :tag: 852$d
+ :transform:
+'407002549':
+ :text: PA H 02.16.05-13
+ :tag: 852$d
+ :transform:
+'407002550':
+ :text: PA H 02.16.05-13
+ :tag: 852$d
+ :transform:
+'407002551':
+ :text: PA H 02.16.05-13
+ :tag: 852$d
+ :transform:
+'407002552':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002553':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002554':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002555':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002556':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002557':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002558':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002559':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002560':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002561':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002562':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002563':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002564':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002565':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002566':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002567':
+ :text: PA H 02.16.05-14
+ :tag: 852$d
+ :transform:
+'407002568':
+ :text: PA H 02.16.05-15
+ :tag: 852$d
+ :transform:
+'407002569':
+ :text: PA H 02.16.05-16
+ :tag: 852$d
+ :transform:
+'407002570':
+ :text: PA H 02.16.05-17
+ :tag: 852$d
+ :transform:
+'407002571':
+ :text: PA H 02.16.05-18
+ :tag: 852$d
+ :transform:
+'407002572':
+ :text: PA H 02.16.05-18
+ :tag: 852$d
+ :transform:
+'407002573':
+ :text: PA H 02.16.05-18
+ :tag: 852$d
+ :transform:
+'407002574':
+ :text: PA H 02.16.05-18
+ :tag: 852$d
+ :transform:
+'407002575':
+ :text: PA H 02.16.05-18
+ :tag: 852$d
+ :transform:
+'407002438':
+ :text: PA H 02.16.05-2
+ :tag: 852$d
+ :transform:
+'407002439':
+ :text: PA H 02.16.05-2
+ :tag: 852$d
+ :transform:
+'407002440':
+ :text: PA H 02.16.05-2
+ :tag: 852$d
+ :transform:
+'407002441':
+ :text: PA H 02.16.05-2
+ :tag: 852$d
+ :transform:
+'407002442':
+ :text: PA H 02.16.05-2
+ :tag: 852$d
+ :transform:
+'407002443':
+ :text: PA H 02.16.05-2
+ :tag: 852$d
+ :transform:
+'407002444':
+ :text: PA H 02.16.05-2
+ :tag: 852$d
+ :transform:
+'407002445':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002446':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002447':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002448':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002449':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002450':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002451':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002452':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002453':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002454':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002455':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002456':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002457':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002458':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002459':
+ :text: PA H 02.16.05-3
+ :tag: 852$d
+ :transform:
+'407002460':
+ :text: PA H 02.16.05-4/1
+ :tag: 852$d
+ :transform:
+'407002461':
+ :text: PA H 02.16.05-4/2
+ :tag: 852$d
+ :transform:
+'407002462':
+ :text: PA H 02.16.05-4/3
+ :tag: 852$d
+ :transform:
+'407002463':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002464':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002465':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002466':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002467':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002468':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002469':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002470':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002471':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002472':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002473':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002474':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002475':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002476':
+ :text: PA H 02.16.05-5
+ :tag: 852$d
+ :transform:
+'407002477':
+ :text: PA H 02.16.05-6
+ :tag: 852$d
+ :transform:
+'407002478':
+ :text: PA H 02.16.05-6
+ :tag: 852$d
+ :transform:
+'407002479':
+ :text: PA H 02.16.05-6
+ :tag: 852$d
+ :transform:
+'407002480':
+ :text: PA H 02.16.05-6
+ :tag: 852$d
+ :transform:
+'407002481':
+ :text: PA H 02.16.05-6
+ :tag: 852$d
+ :transform:
+'407002482':
+ :text: PA H 02.16.05-6
+ :tag: 852$d
+ :transform:
+'407002483':
+ :text: PA H 02.16.05-6
+ :tag: 852$d
+ :transform:
+'407002484':
+ :text: PA H 02.16.05-6
+ :tag: 852$d
+ :transform:
+'407002485':
+ :text: PA H 02.16.05-7
+ :tag: 852$d
+ :transform:
+'407002486':
+ :text: PA H 02.16.05-8
+ :tag: 852$d
+ :transform:
+'407002487':
+ :text: PA H 02.16.05-8
+ :tag: 852$d
+ :transform:
+'407002488':
+ :text: PA H 02.16.05-8
+ :tag: 852$d
+ :transform:
+'407002489':
+ :text: PA H 02.16.05-8
+ :tag: 852$d
+ :transform:
+'407002490':
+ :text: PA H 02.16.05-8
+ :tag: 852$d
+ :transform:
+'407002491':
+ :text: PA H 02.16.05-8
+ :tag: 852$d
+ :transform:
+'407002492':
+ :text: PA H 02.16.05-8
+ :tag: 852$d
+ :transform:
+'407002493':
+ :text: PA H 02.16.05-8
+ :tag: 852$d
+ :transform:
+'407002494':
+ :text: PA H 02.16.05-8
+ :tag: 852$d
+ :transform:
+'407002495':
+ :text: PA H 02.16.05-9
+ :tag: 852$d
+ :transform:
+'407002496':
+ :text: PA H 02.16.05-9
+ :tag: 852$d
+ :transform:
+'407002497':
+ :text: PA H 02.16.05-9
+ :tag: 852$d
+ :transform:
+'407002498':
+ :text: PA H 02.16.05-9
+ :tag: 852$d
+ :transform:
+'407002499':
+ :text: PA H 02.16.05-9
+ :tag: 852$d
+ :transform:
+'407002500':
+ :text: PA H 02.16.05-9
+ :tag: 852$d
+ :transform:
+'407002501':
+ :text: PA H 02.16.05-9
+ :tag: 852$d
+ :transform:
+'407002502':
+ :text: PA H 02.16.05-9
+ :tag: 852$d
+ :transform:
+'407002576':
+ :text: PA H 02.16.06-1
+ :tag: 852$d
+ :transform:
+'407002577':
+ :text: PA H 02.16.06-2
+ :tag: 852$d
+ :transform:
+'407002586':
+ :text: PA H 02.167.08-3
+ :tag: 852$d
+ :transform:
+'407002580':
+ :text: PA H 02.17.03-.3
+ :tag: 852$d
+ :transform:
+'407002578':
+ :text: PA H 02.17.03-1
+ :tag: 852$d
+ :transform:
+'407002579':
+ :text: PA H 02.17.03-2
+ :tag: 852$d
+ :transform:
+'407002581':
+ :text: PA H 02.17.04
+ :tag: 852$d
+ :transform:
+'407002582':
+ :text: PA H 02.17.05
+ :tag: 852$d
+ :transform:
+'407002605':
+ :text: PA H 02.17.06
+ :tag: 852$d
+ :transform:
+'407002583':
+ :text: PA H 02.17.07
+ :tag: 852$d
+ :transform:
+'407002584':
+ :text: PA H 02.17.08-1
+ :tag: 852$d
+ :transform:
+'407002585':
+ :text: PA H 02.17.08-2
+ :tag: 852$d
+ :transform:
+'407002587':
+ :text: PA H 02.17.08-3
+ :tag: 852$d
+ :transform:
+'407002588':
+ :text: PA H 02.17.08-3
+ :tag: 852$d
+ :transform:
+'407002589':
+ :text: PA H 02.17.08-3
+ :tag: 852$d
+ :transform:
+'407002590':
+ :text: PA H 02.17.08-3
+ :tag: 852$d
+ :transform:
+'407002591':
+ :text: PA H 02.17.08-3
+ :tag: 852$d
+ :transform:
+'407002592':
+ :text: PA H 02.17.08-3
+ :tag: 852$d
+ :transform:
+'407002593':
+ :text: PA H 02.17.08-3
+ :tag: 852$d
+ :transform:
+'407002601':
+ :text: PA H 02.17.08-4
+ :tag: 852$d
+ :transform:
+'407002602':
+ :text: PA H 02.17.08-4
+ :tag: 852$d
+ :transform:
+'407002603':
+ :text: PA H 02.17.08-4
+ :tag: 852$d
+ :transform:
+'407002604':
+ :text: PA H 02.17.08-4
+ :tag: 852$d
+ :transform:
+'407002594':
+ :text: PA H 02.17.08-5
+ :tag: 852$d
+ :transform:
+'407002595':
+ :text: PA H 02.17.08-5
+ :tag: 852$d
+ :transform:
+'407002596':
+ :text: PA H 02.17.08-5
+ :tag: 852$d
+ :transform:
+'407002597':
+ :text: PA H 02.17.08-5
+ :tag: 852$d
+ :transform:
+'407002598':
+ :text: PA H 02.17.08-6
+ :tag: 852$d
+ :transform:
+'407002599':
+ :text: PA H 02.17.08-7
+ :tag: 852$d
+ :transform:
+'407002600':
+ :text: PA H 02.17.08-8
+ :tag: 852$d
+ :transform:
+'406000310':
+ :text: PA H 03.03 (Autographe Partitur)
+ :tag: 852$d
+ :transform:
+'407001449':
+ :text: PA H 03.06 (Partitur)
+ :tag: 852$d
+ :transform:
+'407001568':
+ :text: PA H 03.07
+ :tag: 852$d
+ :transform:
+'407001355':
+ :text: PA H 03.08
+ :tag: 852$d
+ :transform:
+'407001354':
+ :text: PA H 03.15 (Klavierauszug)
+ :tag: 852$d
+ :transform:
+'406000162':
+ :text: PA H 03.12
+ :tag: 852$d
+ :transform:
+'406000190':
+ :text: PA H 03.12
+ :tag: 852$d
+ :transform:
+'407001569':
+ :text: PA H 03.12
+ :tag: 852$d
+ :transform:
+'407001570':
+ :text: PA H 03.12
+ :tag: 852$d
+ :transform:
+'407001571':
+ :text: PA H 03.12
+ :tag: 852$d
+ :transform:
+'407001572':
+ :text: PA H 03.12
+ :tag: 852$d
+ :transform:
+'407001573':
+ :text: PA H 03.12
+ :tag: 852$d
+ :transform:
+'407001574':
+ :text: PA H 03.12
+ :tag: 852$d
+ :transform:
+'407001575':
+ :text: PA H 03.12
+ :tag: 852$d
+ :transform:
+'407001582':
+ :text: PA H 03.12
+ :tag: 852$d
+ :transform:
+'407002980':
+ :text: PA H. 02.03.03/1
+ :tag: 852$d
+ :transform:
+'407002931':
+ :text: PA H. 02.03.03/2
+ :tag: 852$d
+ :transform:
+'407002981':
+ :text: PA H. 02.03.03/3
+ :tag: 852$d
+ :transform:
+'407002982':
+ :text: PA H. 02.03.03/3
+ :tag: 852$d
+ :transform:
+'407002983':
+ :text: PA H. 02.03.03/4
+ :tag: 852$d
+ :transform:
+'407002984':
+ :text: PA H. 02.03.04
+ :tag: 852$d
+ :transform:
+'407002985':
+ :text: PA H. 02.03.05/1
+ :tag: 852$d
+ :transform:
+'400057099':
+ :text: R 12
+ :tag: 852$d
+ :transform:
+'407000211':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000212':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000213':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000214':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000215':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000216':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000333':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000334':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000335':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000336':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000337':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000338':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000339':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000340':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000341':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000342':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000343':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000344':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000345':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000346':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000347':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000348':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000349':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000350':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000351':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000352':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000353':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000354':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000355':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000356':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000357':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000358':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000359':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000360':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000361':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000362':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000363':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000364':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000365':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000366':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000367':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000368':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000369':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000370':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000371':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000372':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000373':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000374':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000375':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000376':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000377':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000378':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000379':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000380':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000381':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000382':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000383':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000384':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000385':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000386':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000387':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000388':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000389':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000390':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000409':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000410':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000411':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000412':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000413':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000414':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000415':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000416':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000417':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000418':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000419':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000420':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000421':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000422':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000423':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000424':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000425':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000426':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000427':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000428':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000429':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000444':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000472':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000473':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000474':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000475':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000476':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000477':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000478':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000479':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000480':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000481':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000482':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000483':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000484':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000485':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000486':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000487':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000488':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000489':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000490':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000491':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000492':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000493':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000494':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000495':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000496':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000497':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000498':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000499':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000500':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000501':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000502':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000503':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000504':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000505':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000506':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000507':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000508':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000509':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000510':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000511':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000512':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000513':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000514':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000515':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000516':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000517':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000518':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000519':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000520':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000521':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000522':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000523':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000524':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000525':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000526':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000527':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000528':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000529':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000530':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000531':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000532':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000533':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000534':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000535':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000536':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000537':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000538':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000539':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000540':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000541':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000542':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000543':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000544':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000545':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000546':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000547':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000548':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000549':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000550':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000551':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000552':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000553':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000554':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000555':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000556':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000557':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000558':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000559':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000561':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000562':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000563':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000564':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000565':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000566':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000567':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000568':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000569':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000570':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000571':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000572':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000573':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000574':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000575':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000576':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000577':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000578':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000579':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000580':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000581':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000582':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000583':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000584':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000585':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000586':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000587':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000588':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000589':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000590':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000591':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000592':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000593':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000594':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000595':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000596':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000597':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000598':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000599':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000600':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000601':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000602':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000603':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000604':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000609':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000610':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000611':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000612':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000613':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000614':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000615':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000616':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000617':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000618':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000619':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000620':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000621':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000622':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000623':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000624':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000625':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000626':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000627':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000628':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000629':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000630':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000631':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000632':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000633':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000634':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000635':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000636':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000637':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000638':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000639':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000640':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000641':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000642':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000643':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000644':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000645':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000646':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000647':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000648':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000649':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000650':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000651':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000652':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000660':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000661':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000662':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000663':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000664':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000665':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000666':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000667':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000668':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000669':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000670':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000671':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000672':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000673':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000674':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000675':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000676':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000677':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000678':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000679':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000680':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000681':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000682':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000683':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000684':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000685':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000686':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000687':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000688':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000689':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000690':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000691':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000692':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000693':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000694':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000695':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000696':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000697':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000724':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000725':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000726':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000727':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000728':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000729':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000730':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000731':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000732':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000733':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000734':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000735':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000736':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000737':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000738':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000739':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000740':
+ :text: S 360 c
+ :tag: 852$d
+ :transform:
+'407000805':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000806':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000807':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000808':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000809':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000810':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000811':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000812':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000813':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000814':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000815':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000816':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000817':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000818':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000819':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000820':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000821':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000822':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000823':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000824':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000825':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000826':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000827':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000828':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000829':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000830':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000831':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000832':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000833':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000834':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000835':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000836':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000837':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000838':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000839':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000840':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000849':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000850':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000851':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000852':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000853':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000854':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000855':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000856':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000857':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000858':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000859':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000860':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000861':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000862':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000863':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000897':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000898':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000899':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000900':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000901':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000902':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000903':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000904':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000905':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000906':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000907':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000908':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000909':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000910':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000911':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000912':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000913':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000914':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000915':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000916':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000917':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000918':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000919':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000920':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000921':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000922':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000923':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000924':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000925':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000926':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000927':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000928':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000929':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000930':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000931':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000932':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000933':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000934':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000935':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000936':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000937':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000938':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000939':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000940':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000941':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000942':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000943':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000944':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000945':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000946':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000947':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000948':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000949':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000950':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000951':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000952':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000953':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000954':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000955':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000956':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000957':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000958':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000959':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000960':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000986':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000987':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000988':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000989':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000990':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000991':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000992':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000993':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000994':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000995':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000996':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000997':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000998':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000999':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001000':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001001':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001002':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001003':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001004':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001005':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001006':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001007':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001008':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001009':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001010':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001011':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001012':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001013':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001014':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001015':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001016':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001017':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001018':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001019':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001020':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001021':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001022':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001023':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001024':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001025':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001026':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001027':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001028':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001029':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001030':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001031':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001032':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001033':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001034':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001035':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001036':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001037':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001038':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001039':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001040':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001041':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001042':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001043':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001044':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001045':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001046':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001047':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001048':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001049':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001050':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001051':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001052':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001053':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001054':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001055':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001056':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001057':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001058':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001059':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001060':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001061':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001062':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001063':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001064':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001065':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001066':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001067':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001068':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001069':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001070':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001071':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001072':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001073':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001074':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001075':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001076':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001077':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001078':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001079':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001080':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001081':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001082':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001083':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001084':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001085':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001086':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001087':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001088':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001089':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001090':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001091':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001092':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001093':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001094':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001095':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001096':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001097':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001098':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001099':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001100':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001101':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001102':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001103':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001104':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001105':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001106':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001107':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001108':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001109':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001110':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001111':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001112':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001113':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001114':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001115':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001116':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001117':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001118':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001119':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001120':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001121':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001122':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001123':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001124':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407001125':
+ :text: S 360 d
+ :tag: 852$d
+ :transform:
+'407000179':
+ :text: S 360c
+ :tag: 852$d
+ :transform:
+'407000182':
+ :text: S 360c
+ :tag: 852$d
+ :transform:
+'407000183':
+ :text: S 360c
+ :tag: 852$d
+ :transform:
+'407000184':
+ :text: S 360c
+ :tag: 852$d
+ :transform:
+'407000185':
+ :text: S 360c
+ :tag: 852$d
+ :transform:
+'407000186':
+ :text: S 360c
+ :tag: 852$d
+ :transform:
+'407000187':
+ :text: S 360c
+ :tag: 852$d
+ :transform:
+'407000188':
+ :text: S 360c
+ :tag: 852$d
+ :transform:
+'407000189':
+ :text: S 360c
+ :tag: 852$d
+ :transform:
+'407000190':
+ :text: S 360c
+ :tag: 852$d
+ :transform:
+'407000205':
+ :text: S 360c
+ :tag: 852$d
+ :transform:
+'402003663':
+ :text: u 32
+ :tag: 852$d
+ :transform:
+'402003710':
+ :text: u 9
+ :tag: 852$d
+ :transform:
+'400015008':
+ :text: v
+ :tag: 852$d
+ :transform:
+'402004050':
+ :text: V 198
+ :tag: 852$d
+ :transform:
+'400003920':
+ :text: V I Aa 17
+ :tag: 852$d
+ :transform:
+'400003918':
+ :text: V I Aa 26
+ :tag: 852$d
+ :transform:
+'400003916':
+ :text: V I Ba 34
+ :tag: 852$d
+ :transform:
+'400003919':
+ :text: V I Ba 35
+ :tag: 852$d
+ :transform:
+'400003923':
+ :text: V I Ba 36
+ :tag: 852$d
+ :transform:
+'400003926':
+ :text: V I Ba 37
+ :tag: 852$d
+ :transform:
+'400003921':
+ :text: V I Ba 38
+ :tag: 852$d
+ :transform:
+'400003925':
+ :text: V I Ba 39
+ :tag: 852$d
+ :transform:
+'400003924':
+ :text: V I Ca 14
+ :tag: 852$d
+ :transform:
+'400003922':
+ :text: V I Ca 15
+ :tag: 852$d
+ :transform:
+'400003917':
+ :text: V I Va 40
+ :tag: 852$d
+ :transform:
+'400003895':
+ :text: V VI Cc 14
+ :tag: 852$d
+ :transform:
+'404000359':
+ :text: V.
+ :tag: 852$d
+ :transform:
+'402005856':
+ :text: VC|a 72 [1]
+ :tag: 852$d
+ :transform:
+'402006078':
+ :text: VC|a 72 [2]
+ :tag: 852$d
+ :transform:
+'402006077':
+ :text: VC|a 72 [3]
+ :tag: 852$d
+ :transform:
+'402006063':
+ :text: VC|a 72 [4]
+ :tag: 852$d
+ :transform:
+'402005857':
+ :text: VC|a 73 [3]
+ :tag: 852$d
+ :transform:
+'402004022':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004023':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004024':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004025':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004026':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004027':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004029':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004030':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004032':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004033':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004034':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004035':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004036':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004037':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004038':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004039':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004040':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004041':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004042':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004043':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004044':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004045':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004046':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004047':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004104':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004105':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004106':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004107':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004108':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004109':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004110':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'402004111':
+ :text: X 40
+ :tag: 852$d
+ :transform:
+'400104065':
+ :text: X C 10 a-d
+ :tag: 852$d
+ :transform:
+'400196252':
+ :text: XX.
+ :tag: 852$d
+ :transform:
+'400098596':
+ :text: Z.
+ :tag: 852$d
+ :transform:
diff --git a/lib/active_admin_record_type_filter.rb b/lib/active_admin_record_type_filter.rb
index 159d9719f..02eb08c09 100644
--- a/lib/active_admin_record_type_filter.rb
+++ b/lib/active_admin_record_type_filter.rb
@@ -26,11 +26,11 @@ def label_text
"Unknown param: #{value}"
end
end
-
+
def input_name
"#{super}"
end
end
end
end
-end
\ No newline at end of file
+end
diff --git a/lib/marc_controller_actions.rb b/lib/marc_controller_actions.rb
index e1a5ed381..e394d183f 100644
--- a/lib/marc_controller_actions.rb
+++ b/lib/marc_controller_actions.rb
@@ -1,6 +1,7 @@
# Override collection_action so it is public
# from activeadmin lib/active_admin/resource_dsl.rb
require 'resource_dsl_extensions.rb'
+include Triggers
# Extension module, see
# https://github.com/gregbell/active_admin/wiki/Content-rendering-API
@@ -81,20 +82,8 @@ def self.included(dsl)
# if we arrived here it means nothing crashed
# Rejoice! and launch the background jobs
# if any
- if params[:triggers]
- triggers = JSON.parse(params[:triggers])
-
- triggers.each do |k, relations|
- if k == "save"
- relations.each {|model| Delayed::Job.enqueue(SaveItemsJob.new(@item, model)) }
- elsif k == "reindex"
- relations.each {|model| Delayed::Job.enqueue(ReindexItemsJob.new(@item, model)) }
- else
- puts "Unknown trigger #{k}"
- end
- end
- end
-
+ execute_triggers_from_params(params, @item)
+
# build the dynamic model path
# Redirect decides if we ar reloading the editor or redirecting
diff --git a/lib/marc_import.rb b/lib/marc_import.rb
index bd53cffa4..7dbf7936c 100644
--- a/lib/marc_import.rb
+++ b/lib/marc_import.rb
@@ -32,7 +32,7 @@ def initialize(source_file, model, from = 0)
def each_record(filename, &block)
File.open(filename) do |file|
Nokogiri::XML::Reader.from_io(file).each do |node|
- if node.name == 'record' and node.node_type == Nokogiri::XML::Reader::TYPE_ELEMENT
+ if node.name == 'record' || node.name == 'marc:record' and node.node_type == Nokogiri::XML::Reader::TYPE_ELEMENT
yield(Nokogiri::XML(node.outer_xml).root)
end
end
diff --git a/lib/marc_source.rb b/lib/marc_source.rb
index 6e66bfb7c..9324f6053 100644
--- a/lib/marc_source.rb
+++ b/lib/marc_source.rb
@@ -447,18 +447,18 @@ def to_external(updated_at = nil, versions = nil, holdings = false)
wvno = t.fetch_first_by_tag("n")
content = "#{wv.content rescue nil} #{wvno.content rescue nil}"
next if existent.include?(content)
- n240.add_at(MarcNode.new(@model, "n", content, nil), 0)
+ n240.add_at(MarcNode.new(@model, "n", content, nil), 0) if n240
end
each_by_tag("383") do |t|
wvno = t.fetch_first_by_tag("b")
content = "#{wvno.content rescue nil}"
next if existent.include?(content)
- n240.add_at(MarcNode.new(@model, "n", content, nil), 0)
+ n240.add_at(MarcNode.new(@model, "n", content, nil), 0) rescue nil
end
# Adding digital object links to 500 with new records
#TODO whe should drop the dublet entries in 500 with Digital Object Link prefix for older records
- if !parent_object.digital_objects.empty? && parent_object.id >= 1001000000
+ if !parent_object.digital_objects.empty?# && parent_object.id >= 1001000000
parent_object.digital_objects.each do |image|
# FIXME we should use the domain name from application.rb instead
path = image.attachment.path.gsub("/path/to/the/digital/objects/directory/", "http://muscat.rism.info/")
diff --git a/lib/statistics/institution.rb b/lib/statistics/institution.rb
new file mode 100644
index 000000000..e18549bf8
--- /dev/null
+++ b/lib/statistics/institution.rb
@@ -0,0 +1,27 @@
+module Statistics
+ class Institution
+ #Returns hash of institution => {siglum => count}
+ def self.sources_per_date(from_date, to_date, institutions)
+ result = ActiveSupport::OrderedHash.new
+ s = Sunspot.search(::Source) do
+ with(:created_at, from_date..to_date)
+ facet(:lib_siglum_order, :limit => -1, :minimum_count => 10)
+ end
+ facet_rows = Hash.new(0)
+ s.facet(:lib_siglum_order).rows.each do |r|
+ facet_rows[r.value] = r.count
+ end
+ sigla = institutions.pluck(:siglum)
+ facet_rows.each do |k,v|
+ institution = ::Institution.where(:siglum => k).take
+ next unless institution
+ result[institution] = {k => v} if sigla.include?(k)
+ end
+ if !result.empty?
+ return result
+ else
+ return {::Institution.find(5) => {"ZERO" => 0}}
+ end
+ end
+ end
+end
diff --git a/lib/statistics/person.rb b/lib/statistics/person.rb
new file mode 100644
index 000000000..22ff7fccf
--- /dev/null
+++ b/lib/statistics/person.rb
@@ -0,0 +1,24 @@
+module Statistics
+ class Person
+ #Returns hash of person => {siglum => count}
+ def self.libraries(people)
+ res = ActiveSupport::OrderedHash.new
+ people.each do |person|
+ s = Sunspot.search(::Source) do
+ with(:composer_order, person.full_name)
+ facet(:lib_siglum_order)
+ end
+ line = ActiveSupport::OrderedHash.new
+ s.facet(:lib_siglum_order).rows[0..4].each do |f|
+ if f.value.blank?
+ line['Print'] = f.count
+ else
+ line[f.value] = f.count
+ end
+ res[person] = line
+ end
+ return res
+ end
+ end
+ end
+end
diff --git a/lib/statistics/source.rb b/lib/statistics/source.rb
new file mode 100644
index 000000000..d112f15dd
--- /dev/null
+++ b/lib/statistics/source.rb
@@ -0,0 +1,35 @@
+module Statistics
+ class Source
+ def self.sources_per_wf_stage(from_date, to_date)
+ result = ActiveSupport::OrderedHash.new
+ time_range = ApplicationHelper.month_distance(from_date, to_date)
+ s = Sunspot.search(::Source) do
+ with(:created_at, from_date..to_date)
+ facet(:wf_stage, :zeros => true) do
+ time_range.each do |distance|
+ start_time = Time.now.beginning_of_month + distance.month
+ row "PUB@" + start_time.localtime.strftime("%Y-%m") do
+ with :created_at, start_time..start_time.end_of_month
+ with :wf_stage, "published"
+ end
+ row "UNP@" + start_time.localtime.strftime("%Y-%m") do
+ with :created_at, start_time..start_time.end_of_month
+ with :wf_stage, "inprogress"
+ end
+ end
+ end
+ end
+ s.facet(:wf_stage).rows.each do |r|
+ status, date = r.value.split("@")
+ if result[date]
+ result[date].merge!({status => r.count})
+ else
+ result[date] = {status => r.count}
+ end
+ end
+ return result
+ end
+
+
+ end
+end
diff --git a/lib/statistics/statistics.rb b/lib/statistics/statistics.rb
new file mode 100644
index 000000000..a296135e3
--- /dev/null
+++ b/lib/statistics/statistics.rb
@@ -0,0 +1,92 @@
+module Statistics
+
+ # The factory class is a helper class to create and reuse statistical data from objects.
+ # Main core is an array of ordered objects with key-value pairs in a hash.
+ # This array will be generated by complementary search methods (see e.g. Statistic::User methods).
+ # The to_* classes returning objects for partial views.
+ # The to_chart and to_pie method builds objects ready to use in chart.js
+ # The to_table object return an array of rows, where the first is the header. It can be used in ActiveAdmin table_for builder.
+ class Spreadsheet
+
+ class Item
+ attr_accessor :object, :row
+ def initialize(object, row)
+ @object=object
+ @row=row
+ end
+ end
+
+ attr_accessor :header, :objects
+
+ # This initialzer needs an ActiveSuppport::OrderedHash from Builder-classes
+ def initialize(items)
+ @objects = []
+ items.each do |k,v|
+ @objects << Item.new(k,v)
+ end
+ @header = @objects.first.row.keys
+ end
+
+ #This method adds more columns to items
+ #It is configured b< the options hash
+ # - :attributes => an array object.attributes (e.g. :name)
+ # - :summarize => appends a column sith the summarized values of the row
+ def with_attributes(options={})
+ attributes = options[:attributes] || []
+ summarize = options[:summarize]
+ existent = Marshal.load(Marshal.dump(self))
+ attributes.reverse.each { |att| existent.header.unshift(att) } unless attributes.empty?
+ existent.header << "SUM" if summarize
+ existent.objects.each do |item|
+ line = ActiveSupport::OrderedHash.new
+ attributes.each do |att|
+ line[att] = item.object.send(att)
+ end
+ item.row.each do |k,v|
+ line[k] = v
+ end
+ if summarize
+ total = 0
+ item.row.values.each {|v| total += v if v.is_a?(Integer)}
+ line['SUM'] = total
+ end
+
+ item.row = line
+ end
+ return existent
+ end
+
+ def to_table(options={})
+ res = []
+ existent = with_attributes(options)
+ res << existent.header
+ existent.objects.each do |item|
+ res << item.row.values
+ end
+ return res
+ end
+
+ def to_pie(attribute, options={:limit => -1})
+ res = Hash.new(0)
+ res2 = {}
+ objects.each do |item|
+ res[item.object.send(attribute)] += item.row.values.sum
+ end
+ res.sort_by(&:last).reverse[0..options[:limit]].each do |e|
+ res2[e[0]] = e[1]
+ end
+ return res2
+ end
+
+ def to_chart
+ res = Hash.new(0)
+ objects.each do |item|
+ header.each do |index|
+ res[index] += item.row[index]
+ end
+ end
+ return res
+ end
+
+ end
+end
diff --git a/lib/statistics/user.rb b/lib/statistics/user.rb
new file mode 100644
index 000000000..139a9b219
--- /dev/null
+++ b/lib/statistics/user.rb
@@ -0,0 +1,29 @@
+module Statistics
+ class User
+ # Returns hash of person => {:month => size}
+ def self.sources_by_month(from_date, to_date, users)
+ result = ActiveSupport::OrderedHash.new
+ time_range = ApplicationHelper.month_distance(from_date, to_date)
+ users.each do |user|
+ s = Sunspot.search(::Source) do
+ with(:created_at, from_date..to_date)
+ with(:wf_owner, user.id)
+ facet(:created_at, :zeros => true) do
+ time_range.each do |distance|
+ start_time = Time.now.beginning_of_month + distance.month
+ row start_time.localtime.strftime("%Y-%m") do
+ with :created_at, start_time..start_time.end_of_month
+ end
+ end
+ end
+ end
+ line = ActiveSupport::OrderedHash.new
+ s.facet(:created_at).rows.each do |r|
+ line[r.value] = r.count
+ end
+ result[user] = line
+ end
+ return result
+ end
+ end
+end
diff --git a/lib/statistics/workgroup.rb b/lib/statistics/workgroup.rb
new file mode 100644
index 000000000..7d4dfb7c3
--- /dev/null
+++ b/lib/statistics/workgroup.rb
@@ -0,0 +1,22 @@
+module Statistics
+ class Workgroup
+ # sources_workgroups are not indexed ar the moment
+ def self.sources_by_month(from_date, to_date, workgroups)
+ res = ActiveSupport::OrderedHash.new
+ workgroups.each do |wg|
+ #FIXME from_date etc are as UTC!
+ s = Statistics::User.sources_by_month(from_date.localtime, to_date.localtime, wg.users)
+ line = ActiveSupport::OrderedHash.new(0)
+ s.values.each do |value|
+ value.each do |k,v|
+ if k=="2017-04"
+ end
+ line[k] += v
+ end
+ res[wg] = line
+ end
+ end
+ return res
+ end
+ end
+end
diff --git a/lib/triggers.rb b/lib/triggers.rb
new file mode 100644
index 000000000..c459bfb65
--- /dev/null
+++ b/lib/triggers.rb
@@ -0,0 +1,22 @@
+module Triggers
+ def execute_triggers_from_params(params, object)
+ if params[:triggers]
+ triggers = JSON.parse(params[:triggers])
+
+ triggers.each do |k, relations|
+ if k == "save"
+ relations.each {|model| Delayed::Job.enqueue(SaveItemsJob.new(object, model)) }
+ elsif k == "reindex"
+ relations.each {|model| Delayed::Job.enqueue(ReindexItemsJob.new(object, model)) }
+ else
+ puts "Unknown trigger #{k}"
+ end
+ end
+ end
+ end
+
+ def triggers_from_hash(triggers)
+ [triggers].to_json.html_safe
+ end
+
+end
\ No newline at end of file
diff --git a/public/xml/MARC21slim2MODS3-6.xsl b/public/xml/MARC21slim2MODS3-6.xsl
index d9af1d17f..828bef88b 100644
--- a/public/xml/MARC21slim2MODS3-6.xsl
+++ b/public/xml/MARC21slim2MODS3-6.xsl
@@ -1,5 +1,5 @@
-
+
@@ -5708,4 +5708,4 @@
--->
\ No newline at end of file
+-->
diff --git a/public/xml/MARC21slim2SRWDC.xsl b/public/xml/MARC21slim2SRWDC.xsl
index 3a3ed3e07..d8b0d840f 100644
--- a/public/xml/MARC21slim2SRWDC.xsl
+++ b/public/xml/MARC21slim2SRWDC.xsl
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
+-->
diff --git a/public/xml/MARC21slimUtils.xsl b/public/xml/MARC21slimUtils.xsl
new file mode 100644
index 000000000..76e55aaf4
--- /dev/null
+++ b/public/xml/MARC21slimUtils.xsl
@@ -0,0 +1,188 @@
+
+
+
+
+
+
+
+
+
+ !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~
+
+
+
+ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ
+
+
+
+ !'()*-.0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~
+
+
+ 0123456789ABCDEF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ abcdefghijklmnopqrstuvwxyz
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ .:,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ .:,;/]
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Warning: string contains a character
+ that is out of range! Substituting "?".
+ 63
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-001-007.xsl b/public/xml/marc2bibframe2/ConvSpec-001-007.xsl
new file mode 100644
index 000000000..91e876527
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-001-007.xsl
@@ -0,0 +1,1970 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ dateTime
+
+
+
+
+
+
+
+
+
+
+ Cartography
+ Cartography
+ StillImage
+ StillImage
+ MovingImage
+ Audio
+
+
+
+
+
+
+
+ atlas
+ diagram
+ map
+ profile
+ model
+ remote-sensing image
+ map section
+ map view
+
+
+
+
+
+
+
+
+
+
+
+
+ one color
+ multicolored
+
+
+
+
+
+
+
+
+
+
+ paper
+ wood
+ stone
+ metal
+ synthetic
+ skin
+ textile
+ plastic
+ glass
+ vinyl
+ vellum
+ plaster
+ leather
+ parchment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ one color
+ black and white
+ multicolored
+ gray scale
+ mixed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ celestial globe
+ planetary or lunar globe
+ terrestrial globe
+ earth moon globe
+
+
+
+
+ one color
+ multicolored
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ globe
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ one color
+ black and white
+ multicolored
+ hand colored
+ mixed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ black and white
+ multicolored
+ mixed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ activity card
+ collage
+ drawing
+ painting
+ photomechanical print
+ photonegative
+ photoprint
+ picture
+ print
+ poster
+ technical drawing
+ chart
+ flash card
+ postcard
+ icon
+ radiograph
+ study print
+ photograph
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ one color
+ black and white
+ multicolored
+ hand colored
+ mixed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ black and white
+ multicolored
+ hand colored
+ mixed
+
+
+
+
+
+
+
+
+
+
+
+
+ workprint
+ trims
+ outtakes
+ rushes
+ mixing tracks
+ title bands, intertitle rolls
+ production rolls
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://id.loc.gov/authorities/genreForms/mot
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ one color
+ black and white
+ multicolored
+ mixed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://id.loc.gov/authorities/genreForms/gf2011026723
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ facsimile
+ other type of reproduction
+
+
+
+
+ photocopy, blueline print
+ photocopy
+ pre-production
+ film
+
+
+
+
+ positive
+ negative
+ mixed polarity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ computer tape cartridge
+ computer chip cartridge
+ computer disc cartridge
+ computer disc
+ computer disc cartridge
+ computer tape cassette
+ computer tape reel
+ computer disc
+ computer card
+ computer disc
+ computer disc
+ online resource
+ other electronic carrier
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 3 1/2 in.
+ 12 in.
+ 4 3/4 in. or 12 cm.
+ 1 1/8 x 2 3/8 in.
+ 3 7/8 x 2 1/2 in.
+ 5 1/4 in.
+ unknown
+ 8 in.
+
+
+
+
+ silent
+ sound on medium
+
+
+
+
+ multiple
+
+
+
+
+
+
+
+
+ one file format
+ multiple file formats
+
+
+
+
+
+
+
+
+
+
+
+
+ http://id.loc.gov/vocabulary/mediaTypes/c
+ computer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ paper
+ wood
+ stone
+ metal
+ synthetic
+ skin
+ textile
+ plastic
+ glass
+ vinyl
+ vellum
+ plaster
+ leather
+ parchment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ facsimile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ filmstrip cartridge
+ filmslip
+ filmstrip
+ film roll
+ slide
+ overhead transparency
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ glass
+ synthetic
+ safety film
+ film base (not safety)
+ mixed collection
+ paper
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ silent
+ sound on medium
+ sound separate from medium
+
+
+
+
+ optical sound track on motion picture film
+ magnetic sound track on motion picture film
+ magnetic audio tape in cartridge
+ sound disc
+ magnetic audio tape on reel
+ magnetic audio tape in cassette
+ optical and magnetic sound track on motion picture film
+ videotape
+ videodisc
+
+
+
+
+ standard 8 mm.
+ super 8 mm., single 8 mm.
+ 9.5 mm.
+ 16 mm.
+ 28 mm.
+ 35 mm.
+ 70 mm.
+ 2x2 in. or 5x5 cm.
+ 2 1/4 in. x 2 1/4 in. or 6x6 cm.
+ 4x5 in. or 10x13 cm.
+ 15x7 in. or 13x18 cm.
+ 18x10 in. or 21x26 cm.
+ 9x9 in. or 23x23 cm.
+ 10x10 in. or 26x26 cm.
+ 17x7 in. or 18x18 cm.
+
+
+
+
+ cardboard
+ glass
+ synthetic
+ metal
+ metal
+ synthetic
+ mixed collection
+
+
+
+
+ glass
+ glass
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://id.loc.gov/vocabulary/mediaTypes/g
+ projected
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ positive
+ negative
+ mixed polarity
+
+
+
+
+
+
+
+
+
+
+
+ 8 mm.
+ 16 mm.
+ 35 mm.
+ 70 mm.
+ 105 mm.
+ 13x5 in. or 8x13 cm.
+ 4x6 in. or 11x15 cm.
+ 6x9 in. or 16x23 cm.
+ 3 1/4 x 7 3/8 in. or 9x19 cm.
+
+
+
+
+ low reduction range
+ normal reduction range
+ high reduction range
+ very high reduction range
+ ultra high reduction range
+ reduction rate varies
+
+
+
+
+
+
+
+
+
+
+
+ silver halide
+ diazo
+ vesicular
+ mixed emulsion
+
+
+
+
+
+
+
+
+
+
+
+
+ first generation (master)
+ printing master
+ service copy
+ mixed generation
+
+
+
+
+ safety base
+ acetate
+ diacetate
+ polyester
+ safety base, mixed
+ triacetate
+ nitrate base
+ mixed nitrate and safety base
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://id.loc.gov/vocabulary/mediaTypes/h
+ microform
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ canvas
+ bristol board
+ cardboard
+ glass
+ synthetic
+ skin
+ textile
+ metal
+ plastic
+ vinyl
+ mixed collection
+ vellum
+ paper
+ plaster
+ hardboard
+ porcelain
+ stone
+ wood
+ leather
+ parchment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ canvas
+ bristol board
+ cardboard
+ glass
+ synthetic
+ skin
+ textile
+ metal
+ plastic
+ vinyl
+ mixed collection
+ vellum
+ paper
+ plaster
+ hardboard
+ porcelain
+ stone
+ wood
+ leather
+ parchment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ film cartridge
+ film cassette
+ film roll
+ film reel
+
+
+
+
+
+
+
+
+
+
+
+
+ standard sound aperture (reduced frame)
+ nonanamorphic (wide-screen)
+ 3D
+ anamorphic (wide-screen)
+ other wide-screen
+ standard silent aperture (full frame)
+
+
+
+
+ silent
+ sound on medium
+ sound separate from medium
+
+
+
+
+ optical sound track on motion picture film
+ magnetic sound track on motion picture film
+ magnetic audio tape in cartridge
+ sound disc
+ magnetic audio tape on reel
+ magnetic audio tape in cassette
+ optical and magnetic sound track on motion picture film
+ videotape
+ videodisc
+
+
+
+
+ 8 mm.
+ super 8 mm., single 8 mm.
+ 9.5 mm.
+ 16 mm.
+ 28 mm.
+ 35 mm.
+ 70 mm.
+
+
+
+
+ mixed
+ monaural
+ quadraphonic, multichannel or surround
+ stereophonic
+
+
+
+
+
+
+
+
+
+
+
+
+ positive
+ negative
+
+
+
+
+
+
+
+
+
+
+ duplicate
+ master
+ original
+ reference print, viewing copy
+
+
+
+
+ safety base
+ acetate
+ diacetate
+ polyester
+ safety base
+ triacetate
+ nitrate base
+ mixed nitrate and safety base
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ complete
+ incomplete
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://id.loc.gov/vocabulary/mediaTypes/g
+ projected
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ completeness
+
+
+
+
+
+
+
+ film inspection date
+
+ gYearMonth
+
+
+
+
+
+
+
+
+
+
+
+
+ sound disc
+ cylinder
+ sound cartridge
+ sound-track film
+ roll
+ remote
+ sound cassette
+ sound-tape reel
+ wire recording
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 16 rpm
+ 13 1/3 rpm
+ 45 rpm
+ 78 rpm
+ 8 rpm
+ 1.4 m. per sec.
+ 120 rpm
+ 160 rpm
+ 15/16 ips
+ 1 7/8 ips
+ 3 3/4 ips
+ 7 1/2 ips
+ 15 ips
+ 30 ips
+
+
+
+
+ monaural
+ quadraphonic, multichannel or surround
+ stereophonic
+
+
+
+
+
+
+
+
+
+
+
+ microgroove/fine
+ coarse/standard
+
+
+
+
+ 3 in.
+ 5 in.
+ 7 in.
+ 10 in.
+ 12 in.
+ 16 in.
+ 4 3/4 in. or 12 cm.
+ 3 7/8 x 2 1/2 in.
+ 5 1/4 x 3 7/8 in.
+ 2 3/4 x 4 in.
+
+
+
+
+ 1/8 in. tape width
+ 1/4 in. tape width
+ 1/2 in. tape width
+ 1 in. tape width
+
+
+
+
+ full (1)
+ half (2)
+ quarter (4)
+ 8
+ 12
+ 16
+
+
+
+
+ master tape
+ tape duplication master
+ disc master (negative)
+ instantaneous (recorded on the spot)
+ mass produced
+ mother (positive)
+ stamper (negative)
+ test pressing
+
+
+
+
+ cellulose nitrate
+ acetate tape
+ glass
+ aluminum
+ paper
+ metal
+ plastic
+ plastic
+ shellac
+ wax
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ lacquer coating
+ ferrous oxide
+ lacquer
+ lacquer
+ metal
+
+
+
+
+
+
+
+
+
+
+
+
+
+ hill-and-dale cutting
+ lateral or combined cutting
+
+
+
+
+ NAB standard
+ CCIR standard
+ Dolby-B encoded
+ dbx encoded
+ digital recording
+ Dolby-A encoded
+ Dolby-C encoded
+ CX encoded
+
+
+
+
+
+
+
+ http://id.loc.gov/vocabulary/mediaTypes/s
+ audio
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ videocartridge
+ videodisc
+ videocassette
+ videotape reel
+
+
+
+
+
+
+
+
+
+
+
+
+ Beta (1/2 in.videocassette)
+ VHS (1/2 in.videocassette)
+ U-matic (3/4 in.videocassette)
+ EIAJ (1/2 in.reel)
+ Type C (1 in.reel)
+ Quadruplex (1 in.or 2 in. reel)
+ Laserdisc
+ CED (Capacitance Electronic Disc)
+ Betacam (1/2 in., videocassette)
+ Betacam SP (1/2 in., videocassette)
+ Super-VHS (1/2 in. videocassette)
+ M-II (1/2 in., videocassette)
+ D-2 (3/4 in., videocassette)
+ 8 mm.
+ Hi-8 mm.
+ Blu-ray disc
+ DVD
+
+
+
+
+ sound on medium
+ sound separate from medium
+
+
+
+
+ optical sound track on motion picture film
+ magnetic sound track on motion picture film
+ magnetic audio tape in cartridge
+ sound disc
+ magnetic audio tape on reel
+ magnetic audio tape in cassette
+ optical and magnetic sound track on motion picture film
+ videotape
+ videodisc
+
+
+
+
+ 8 mm.
+ 1/4 in.
+ 1/2 in.
+ 1 in.
+ 2 in.
+ 3/4 in.
+
+
+
+
+ mixed
+ monaural
+ quadraphonic, multichannel or surround
+ stereophonic
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://id.loc.gov/vocabulary/mediaTypes/v
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-006,008.xsl b/public/xml/marc2bibframe2/ConvSpec-006,008.xsl
new file mode 100644
index 000000000..e38a017e5
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-006,008.xsl
@@ -0,0 +1,1627 @@
+
+
+
+
+
+
+
+ illustrations
+ maps
+ portraits
+ charts
+ plans
+ plates
+ music
+ facsimiles
+ coats of arms
+ geneological tables
+ forms
+ samples
+ phonodisc, phonowire
+ photographs
+ illuminations
+
+
+
+ preschool
+ primary
+ pre-adolescent
+ adolescent
+ adult
+ specialized
+ general
+ juvenile
+
+
+
+ microfilm
+ microfiche
+ microopaque
+ online resource
+ direct electronic
+ regular print reproduction
+ electronic
+
+
+
+ abstract or summary
+ bibliography
+ catalog
+ dictionary
+ encyclopedia
+ handbook
+ legal article
+ biography
+ index
+ patent
+ discography
+ legislation
+ thesis
+ survey of literature
+ review
+ programmed text
+ filmography
+ directory
+ statistics
+ technical report
+ standard of specification
+ legal case and case notes
+ law report or digest
+ yearbook
+ treaty
+ offprint
+ calendar
+ comic or graphic novel
+
+
+
+ fiction
+ drama
+ essay
+ novel
+ humor, satire
+ letter
+ short story
+ mixed fiction
+ poetry
+ speech
+
+
+
+ autobiography
+ individual biography
+ collective biography
+ contains biographical information
+
+
+
+ numeric data
+ computer program
+ representational
+ document (computer)
+ bibliographic data
+ font
+ game
+ sound
+ interactive multimedia
+ online system or service
+ computer file combination
+
+
+
+ single map
+ map series
+ map serial
+ globe
+ atlas
+ map supplement to another work
+ map bound as part of another work
+
+
+
+ manuscript
+ picture card, post card
+ calendar
+ puzzle
+ game
+ wall map
+ playing cards
+ loose-leaf
+
+
+
+ autobiography
+ biography
+ conference proceedings
+ drama
+ essays
+ fiction
+ reporting
+ history
+ instruction
+ language instruction
+ comedy
+ lectures, speeches
+ memoirs
+ folktales
+ poetry
+ rehearsals
+ sounds
+ interviews
+
+
+
+ annual
+ bimonthly
+ semiweekly
+ daily
+ biweekly
+ semiannual
+ biennial
+ triennial
+ three times a week
+ three times a month
+ continuously updated
+ monthly
+ quarterly
+ semimonthly
+ three times a year
+ weekly
+
+
+
+ updating database
+ updating loose-leaf
+ monographic series
+ newspaper
+ periodical
+ updating web site
+
+
+
+ art original
+ kit
+ art reproduction
+ diorama
+ filmstrip
+ game
+ picture
+ graphic
+ technical drawing
+ motion picture
+ chart
+ flash card
+ microscope slide
+ model
+ realia
+ slide
+ transparency
+ videorecording
+ toy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ date
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 - successive
+ 1 - latest
+ 2 - integrated
+
+
+
+
+
+
+
+ metadata entry convention
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ festschrift
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ anthems
+ ballads
+ bluegrass music
+ blues
+ ballets
+ chaconnes
+ chants, other religions
+ chant, Christian
+ concerti grossi
+ chorales
+ chorale preludes
+ canons and rounds
+ chansons, polyphonic
+ carols
+ chance compositions
+ cantatas
+ country music
+ canzonas
+ dance forms
+ divertimentos, serenades, cassations, divertissements, notturni
+ fugues
+ flamenco
+ folk music
+ fantasias
+ gospel music
+ hymns
+ jazz
+ musical revues and comedies
+ madrigals
+ minuets
+ motets
+ motion picture music
+ marches
+ masses
+ multiple forms
+ mazurkas
+ nocturnes
+ operas
+ oratorios
+ overtures
+ program music
+ passion music
+ polonaises
+ popular music
+ preludes
+ passacaglias
+ part-songs
+ pavans
+ rock music
+ rondos
+ ragtime music
+ ricercars
+ rhapsodies
+ requiems
+ square dance music
+ songs
+ sonatas
+ symphonic poems
+ studies and exercises
+ suites
+ symphonies
+ toccatas
+ teatro lirico
+ trio-sonatas
+ villancicos
+ variations
+ waltzes
+ arzuelas
+
+
+
+
+ full score
+ full score, miniature or study size
+ accompaniment reduced for keyboard
+ voice score with accompaniment omitted
+ condensed score or piano-conductor score
+ close score
+ chorus score
+ condensed score
+ performer-conducter part
+ vocal score
+ score
+ multiple score formats
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ basic roman
+ extended roman
+ cyrillic
+ japanese
+ chinese
+ arabic
+ greek
+ hebrew
+ thai
+ devanagari
+ korean
+ tamil
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ more than 999 minutes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ autonomous or semi-autonomous government publication
+ multilocal government publication
+ federal or national government publication
+ international intergovernmental government publication
+ local government publication
+ multistate government publication
+ government publication
+ state, provincial, territorial, dependant government publication
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ conference publication
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ discography
+ bibliography
+ thematic index
+ libretto or text
+ biography of composer or author
+ biography of performer or history of ensemble
+ technical and/or historical information on instruments
+ technical information on music
+ historical information
+ ethnological information
+ instructional materials
+ music
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ inclusive collection dates
+
+
+ bulk collection dates
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Currently published
+
+
+
+
+
+
+ Ceased publication
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ large print
+
+
+
+
+
+
+ braille
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Aitoff
+ Gnomic
+ Lambert's azimuthal equal area
+ Orthographic
+ Azimuthal equidistant
+ Stereographic
+ General vertical near-sided
+ Modified stereographic for Alaska
+ Chamberlin trimetric
+ polar stereographic
+ Azimuthal, specific type unknown
+ Azimuthal, other
+ Gali
+ Goode's homiographic
+ Lambert's cylindrical equal area
+ Mercator
+ Miller
+ Mollweide
+ Sinusoidal
+ Transverse Mercator
+ Gauss-Kruger
+ Equirectangular
+ Krovak
+ Cassini-Soldner
+ Oblique Mercator
+ Robinson
+ Space oblique Mercator
+ Cylindrical, specific type unknown
+ Cylindrical, other
+ Alber's equal area
+ Bonne
+ Lambert's conformal conic
+ Equidistant conic
+ Polyconic
+ Conic, specific type unknown
+ Conic, other
+ Armadillo
+ Butterfly
+ Eckert
+ Goode's homolosine
+ Miller's bipolar oblique conformal conic
+ Van Der Grinten
+ Dimaxion
+ Cordiform
+ Lambert conformal
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ normalized irregular
+ regular
+ completely irregular
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ form of original item
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ animation
+ animation and live action
+ live action
+
+
+
+
+
+
+
+
+
+
+
+ technique
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ contours
+ shading
+ gradient and bathymetric tints
+ hachures
+ bathymetry/soundings
+ form lines
+ spot heights
+ pictorially
+ land forms
+ bathymetry/isolines
+ rock drawings
+
+
+
+
+
+
+
+
+
+ relief
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Index present
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-010-048.xsl b/public/xml/marc2bibframe2/ConvSpec-010-048.xsl
new file mode 100644
index 000000000..9c41061f6
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-010-048.xsl
@@ -0,0 +1,1208 @@
+
+
+
+
+
+
+
+ -XXXX/-3000
+ -29XX
+ -28XX
+ -27XX
+ -26XX
+ -25XX
+ -24XX
+ -23XX
+ -22XX
+ -21XX
+ -20XX
+ -19XX
+ -18XX
+ -17XX
+ -16XX
+ -15XX
+ -14XX
+ -13XX
+ -12XX
+ -11XX
+ -10XX
+ -09XX
+ -08XX
+ -07XX
+ -06XX
+ -05XX
+ -04XX
+ -03XX
+ -02XX
+ -01XX
+ -00XX
+ 00
+ 01
+ 02
+ 03
+ 04
+ 05
+ 06
+ 07
+ 08
+ 09
+ 10
+ 11
+ 12
+ 13
+ 14
+ 15
+ 16
+ 17
+ 18
+ 19
+ 20
+
+
+
+ brass horn
+ brass trumpet
+ brass coronet
+ brass trombone
+ brass tuba
+ brass baritone
+ brass
+ brass
+ brass, ethnic
+ brass
+ electronic electronic synthesizer
+ electronic electronic tape
+ electronic computer
+ electronic ondes martinot
+ electronic
+ electronic
+ electronic
+ keyboard piano
+ keyboard organ
+ keyboard harpsichord
+ keyboard clavichord
+ keyboard continuo
+ keyboard celeste
+ keyboard
+ keyboard
+ keyboard, ethnic
+ keyboard
+ percussion timpani
+ percussion xylophone
+ percussion marimba
+ percussion drum
+ percussion
+ percussion
+ percussion, ethnic
+ percussion
+ string, bowed violin
+ string, bowed viola
+ string, bowed violoncello
+ string, bowed double bass
+ string, bowed viol
+ string, bowed viola d'amore
+ string, bowed viola da gamba
+ string, bowed
+ string, bowed
+ string, bowed, ethnic
+ string, bowed
+ string, plucked harp
+ string, plucked guitar
+ string, plucked lute
+ string, plucked mandolin
+ string, plucked
+ string, plucked
+ string, plucked, ethnic
+ string, plucked
+ woodwind flute
+ woodwind oboe
+ woodwind clarinet
+ woodwind bassoon
+ woodwind piccolo
+ woodwind English horn
+ woodwind bass clarinet
+ woodwind recorder
+ woodwind saxophone
+ woodwind
+ woodwind
+ woodwind, ethnic
+ woodwind
+ instrumental orchestra
+ instrumental chamber orchestra
+ instrumental string orchestra
+ instrumental band
+ instrumental dance orchestra
+ instrumental brass band
+ instrumental
+ instrumental
+ instrumental, ethnic
+ instrumental
+ chorus mixed chorus
+ chorus female chorus
+ chorus male chorus
+ chorus children chorus
+ chorus
+ chorus
+ chorus, ethnic
+ voice soprano
+ voice mezzo soprano
+ voice alto
+ voice tenor
+ voice baritone
+ voice bass
+ voice counter tenor
+ voice high voice
+ voice medium voice
+ voice low voice
+ voice
+ voice
+ voice, ethnic
+
+
+
+
+
+
+
+
+ bf:Local
+ invalid
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ canceled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ broadcast
+ finding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ edtf
+
+
+
+
+
+
+ edtf
+
+
+
+
+
+
+
+
+
+
+
+
+ lcc-g
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ linear scale
+
+
+
+
+
+
+
+
+
+ linear horizontal
+
+
+
+
+
+ linear vertical
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ marc
+
+
+
+
+
+
+
+
+ Includes translation
+
+
+
+
+
+
+ summary
+ sung or spoken text
+ libretto
+ table of contents
+ accompanying material
+ original
+ subtitles or captions
+ intermediate translations
+ original accompanying materials
+ original libretto
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://id.loc.gov/vocabulary/iso639-1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://id.loc.gov/vocabulary/languages
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ ISO 3166
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ edtf
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ edtf
+
+
+
+
+
+
+ edtf
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ marcmuscomp
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:Lccn
+ invalid
+
+
+
+
+
+ bf:Nbn
+ invalid
+
+
+
+
+
+ bf:CopyrightNumber
+ invalid
+
+
+
+
+
+ bf:Isbn
+ invalid
+
+
+
+
+
+
+ bf:Issn
+ incorrect
+ canceled
+
+
+
+
+
+ bf:Isrc
+ bf:Upc
+ bf:Ismn
+ bf:Ean
+ bf:Sici
+ bf:Identifier
+
+
+
+
+
+ invalid
+
+
+
+
+
+ bf:LcOverseasAcq
+
+
+
+
+
+ bf:Strn
+ invalid
+
+
+
+
+
+ bf:AudioIssueNumber
+ bf:MatrixNumber
+ bf:MusicPlate
+ bf:MusicPublisherNumber
+ bf:VideoRecordingNumber
+ bf:PublisherNumber
+
+
+
+
+
+
+
+
+
+
+ bf:Coden
+ invalid
+
+
+
+
+
+ bf:PostalRegistration
+
+
+
+
+
+ bf:Local
+ invalid
+
+
+
+
+
+ bf:StudyNumber
+
+
+
+
+
+ bf:Identifier
+ invalid
+
+
+
+
+
+ bf:ReportNumber
+ invalid
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+ date
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ additional codes
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Library and Archives Canada
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ US GPO
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ intervening source
+ current source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ISO 3166
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-050-088.xsl b/public/xml/marc2bibframe2/ConvSpec-050-088.xsl
new file mode 100644
index 000000000..55af51fd0
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-050-088.xsl
@@ -0,0 +1,564 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Library and Archives Canada
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ National Library of Medicine
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ National Agricultural Library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ agricola
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ full
+ abridged
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ invalid
+
+
+
+
+
+
+
+ sudocs
+
+
+
+
+
+
+ Government of Canada Publications
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Item -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:ShelfMarkLcc
+ bf:ShelfMark
+
+
+
+
+
+
+
+
+
+
+
+
+ http://id.loc.gov/vocabulary/organizations/dlc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Instance
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ National Library of Medicine
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-1XX,6XX,7XX,8XX-names.xsl b/public/xml/marc2bibframe2/ConvSpec-1XX,6XX,7XX,8XX-names.xsl
new file mode 100644
index 000000000..1cbb6f352
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-1XX,6XX,7XX,8XX-names.xsl
@@ -0,0 +1,951 @@
+
+
+
+
+
+
+
+
+
+
+
+ #Agent -
+ bf:Agent
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Agent -
+ bf:Agent
+
+
+
+
+ #Work -
+ bf:Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ComplexSubject
+ NameTitle
+ Name
+ CorporateName
+ ConferenceName
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+ :,;/
+
+ --
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ relationship
+ #Work
+
+
+
+
+
+ relationship
+ #Work
+
+
+
+
+
+
+
+
+
+
+
+
+ #Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Agent -
+ bf:Agent
+
+
+
+
+ #Work -
+ bf:Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Agent -
+ bf:Agent
+
+
+
+
+ #Work -
+ bf:Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+ :,;/
+
+ --
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Person
+
+
+
+
+
+ Family
+
+
+ Person
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ relationship
+ #Work
+
+
+
+
+
+ relationship
+ #Work
+
+
+
+
+
+
+
+
+
+
+
+
+ #Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-200-247not240-Titles.xsl b/public/xml/marc2bibframe2/ConvSpec-200-247not240-Titles.xsl
new file mode 100644
index 000000000..9df3e842d
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-200-247not240-Titles.xsl
@@ -0,0 +1,887 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ VariantTitle
+
+
+ AbbreviatedTitle
+
+
+
+
+ issnkey
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ VariantTitle
+
+
+ KeyTitle
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ VariantTitle
+
+ translated
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ VariantTitle
+
+
+ CollectiveTitle
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ VariantTitle
+
+
+
+ portion
+
+
+
+ ParallelTitle
+
+
+
+ distinctive
+
+
+ cover
+
+
+ added title page
+
+
+ caption
+
+
+ running
+
+
+ spine
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ VariantTitle
+
+ former
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-240andX30-UnifTitle.xsl b/public/xml/marc2bibframe2/ConvSpec-240andX30-UnifTitle.xsl
new file mode 100644
index 000000000..6b76fccdc
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-240andX30-UnifTitle.xsl
@@ -0,0 +1,749 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Work -
+ bf:Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ComplexSubject
+ Title
+
+
+
+
+
+
+
+ -
+
+
+
+ :,;/
+
+ --
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ relationship
+ #Work
+
+
+
+
+
+
+
+
+
+
+ #Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Work -
+ bf:Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Work -
+ bf:Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-250-270.xsl b/public/xml/marc2bibframe2/ConvSpec-250-270.xsl
new file mode 100644
index 000000000..a6fd49b66
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-250-270.xsl
@@ -0,0 +1,572 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ).:,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ).:,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Musical presentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Computer file characteristics
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Production
+ Publication
+ Distribution
+ Manufacture
+
+
+ Publication
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ current
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-3XX.xsl b/public/xml/marc2bibframe2/ConvSpec-3XX.xsl
new file mode 100644
index 000000000..f8cc6b488
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-3XX.xsl
@@ -0,0 +1,924 @@
+
+
+
+
+
+
+
+
+
+ bf:content
+ bf:Content
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:genreForm
+ bf:GenreForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ doubling
+
+
+
+
+
+
+ alternative
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Total performers alongside ensembles:
+ Total performers:
+ Total ensembles:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:intendedAudience
+ bflc:creatorCharacteristic
+
+
+
+
+ bf:IntendedAudience
+ bflc:CreatorCharacteristic
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ rda
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +:,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Physical details
+ Accompanying materials
+
+
+
+
+
+
+
+
+ +:,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +:,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:media
+ bf:Media
+
+
+
+
+
+
+
+
+ bf:carrier
+ bf:Carrier
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:baseMaterial
+ bf:BaseMaterial
+
+
+
+
+
+
+ bf:appliedMaterial
+ bf:AppliedMaterial
+
+
+
+ bf:productionMethod
+ bf:ProductionMethod
+
+
+
+ bf:mount
+ bf:Mount
+
+
+
+ bf:reductionRatio
+ bf:ReductionRatio
+
+
+
+ bf:systemRequirement
+ bf:SystemRequirement
+
+
+
+ bf:generation
+ bf:Generation
+
+
+
+ bf:layout
+ bf:Layout
+
+
+
+ bf:bookFormat
+ bf:BookFormat
+
+
+
+ bf:fontSize
+ bf:FontSize
+
+
+
+ bf:polarity
+ bf:Polarity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:soundCharacteristic
+ bf:RecordingMethod
+
+
+
+ bf:soundCharacteristic
+ bf:RecordingMedium
+
+
+
+ bf:soundCharacteristic
+ bf:PlayingSpeed
+
+
+
+ bf:soundCharacteristic
+ bf:GrooveCharacteristic
+
+
+
+ bf:soundCharacteristic
+ bf:TrackConfig
+
+
+
+ bf:soundCharacteristic
+ bf:TapeConfig
+
+
+
+ bf:soundCharacteristic
+ bf:PlaybackChannels
+
+
+
+ bf:soundCharacteristic
+ bf:PlaybackCharacteristic
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:projectionCharacteristic
+ bf:PresentationFormat
+
+
+
+ bf:projectionCharacteristic
+ bf:ProjectionSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:videoCharacteristic
+ bf:VideoFormat
+
+
+
+ bf:videoCharacteristic
+ bf:BroadcastStandard
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:digitalCharacteristic
+ bf:FileType
+
+
+
+ bf:digitalCharacteristic
+ bf:EncodingFormat
+
+
+
+ bf:digitalCharacteristic
+ bf:FileSize
+
+
+
+ bf:digitalCharacteristic
+ bf:Resolution
+
+
+
+ bf:digitalCharacteristic
+ bf:RegionalEncoding
+
+
+
+ bf:digitalCharacteristic
+ bf:EncodedBitrate
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:CartographicDataType
+ bf:EncodingFormat
+
+
+
+
+ chopPunctuation
+ chopPunctuation
+
+
+
+
+ bf:digitalCharacteristic
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Numbering
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-490-510-530to535-Links.xsl b/public/xml/marc2bibframe2/ConvSpec-490-510-530to535-Links.xsl
new file mode 100644
index 000000000..84b577a5e
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-490-510-530to535-Links.xsl
@@ -0,0 +1,745 @@
+
+
+
+
+
+
+
+
+ #Instance -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Instance
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Instance
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Instance
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:Issn
+ bf:Isbn
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+ :,;/
+
+
+ ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+ Coverage
+ Location
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+
+ :,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Instance530-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Instance533-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Instance534-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-5XX.xsl b/public/xml/marc2bibframe2/ConvSpec-5XX.xsl
new file mode 100644
index 000000000..3cbf24b3b
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-5XX.xsl
@@ -0,0 +1,898 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cast:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ reading grade level
+ interest age level
+ interest grade level
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Authorized users:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ with
+ bibliography
+ report type
+ issuance information
+ type of computer data
+ funding information
+ related material
+
+
+ biographical data
+ administrative history
+
+
+ issuing body
+
+
+ index
+ finding aid
+
+
+ exhibition
+ award
+ description source
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Contract:
+ Grant:
+ Program element:
+ Project:
+ Task:
+ Work unit:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Item -
+
+
+
+
+
+
+
+
+
+
+
+ #Instance
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Instance
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ binding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ action
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-648-662.xsl b/public/xml/marc2bibframe2/ConvSpec-648-662.xsl
new file mode 100644
index 000000000..48b562756
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-648-662.xsl
@@ -0,0 +1,508 @@
+
+
+
+
+
+
+
+
+
+
+
+ #Temporal -
+
+
+ #GenreForm -
+
+
+ #Topic -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:genreForm
+ bf:subject
+
+
+
+
+ bf:Temporal
+ bf:Place
+ bf:GenreForm
+ bf:Topic
+
+
+
+
+
+ ComplexSubject
+ Temporal
+
+
+ ComplexSubject
+ Topic
+
+
+
+
+ ComplexSubject
+ Geographic
+
+
+ GenreForm
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ relationship
+ #Work
+
+
+
+
+
+
+
+
+
+
+ #Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:genreForm
+ bf:subject
+
+
+
+
+ bf:Person
+ bf:Organization
+ bf:Meeting
+ bf:Temporal
+ bf:Place
+ bf:GenreForm
+ bf:Topic
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ madsrdf:Country
+ madsrdf:County
+ madsrdf:State
+ madsrdf:City
+ madsrdf:CitySection
+ madsrdf:Region
+ madsrdf:ExtraterrestrialArea
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ rdfs:label
+ madsrdf:authoritativeLabel
+
+
+
+
+ madsrdf:GenreForm
+ madsrdf:Topic
+ madsrdf:Temporal
+ madsrdf:Geographic
+ madsrdf:Temporal
+
+
+ madsrdf:Geographic
+ madsrdf:Temporal
+ madsrdf:Topic
+
+
+ madsrdf:Geographic
+ madsrdf:GenreForm
+
+
+ madsrdf:Occupation
+ madsrdf:GenreForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-720+740to755.xsl b/public/xml/marc2bibframe2/ConvSpec-720+740to755.xsl
new file mode 100644
index 000000000..0ba3add1f
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-720+740to755.xsl
@@ -0,0 +1,152 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ madsrdf:Country
+ madsrdf:County
+ madsrdf:State
+ madsrdf:City
+ madsrdf:CitySection
+ madsrdf:Region
+ madsrdf:ExtraterrestrialArea
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ relationship
+ #Work
+
+
+
+
+
+
+
+
+
+ #Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bflc:MachineModel
+ bflc:ProgrammingLanguage
+ bflc:OperatingSystem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-760-788-Links.xsl b/public/xml/marc2bibframe2/ConvSpec-760-788-Links.xsl
new file mode 100644
index 000000000..6fc9d960d
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-760-788-Links.xsl
@@ -0,0 +1,428 @@
+
+
+
+
+
+
+
+
+ #Work -
+ #Instance -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:translationOf
+ bf:translation
+ bf:supplement
+ bf:supplementTo
+ bf:partOf
+ bf:hasPart
+ bf:otherEdition
+ bf:issuedWith
+
+
+ bf:continues
+ bf:continuesInPart
+ bf:mergerOf
+ bf:absorbed
+ bf:separatedFrom
+ bf:precededBy
+
+
+
+
+ bf:continuedBy
+ bf:continuedInPartBy
+ bf:absorbedBy
+ bf:splitInto
+ bf:mergedToForm
+ bf:succeededBy
+
+
+ bf:dataSource
+ bf:relatedTo
+
+
+
+
+
+
+ bf:Work
+
+
+
+
+
+
+
+
+ #Work -
+ #Instance -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:hasSeries
+ bf:hasSubseries
+
+
+
+
+
+
+ bf:Work
+
+
+
+
+
+
+
+
+ #Work
+ #Instance -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:otherPhysicalFormat
+ bf:Instance
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Instance
+ #Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:Strn
+ bf:Issn
+ bf:Coden
+ bf:Isbn
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-841-887.xsl b/public/xml/marc2bibframe2/ConvSpec-841-887.xsl
new file mode 100644
index 000000000..c7d66ea46
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-841-887.xsl
@@ -0,0 +1,222 @@
+
+
+
+
+
+
+
+
+
+ #Instance -
+ #Item -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:electronicLocator
+
+
+
+
+
+
+
+ #Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:supplementaryContent
+
+
+
+
+
+
+
+
+
+ #Item -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Instance
+
+
+
+
+
+
+
+
+
+
+
+
+ #Item -
+
+
+
+
+
+
+
+ bf:electronicLocator
+
+
+ #Instance
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-880.xsl b/public/xml/marc2bibframe2/ConvSpec-880.xsl
new file mode 100644
index 000000000..9ec8b2615
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-880.xsl
@@ -0,0 +1,509 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Agent880-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:content
+ bf:Content
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Instance880-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Agent880-
+ #Work880-
+
+
+
+
+
+
+
+
+ #Work880-
+
+
+
+
+
+
+
+
+
+
+ #GenreForm880-
+
+
+ #Topic880-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Agent880-
+ #Work880-
+
+
+
+
+
+
+
+ #Work880-
+
+
+
+
+
+
+
+
+
+
+
+
+ #Work880-
+ #Instance880-
+
+
+
+
+
+
+
+ #Agent880-
+ #Work880-
+
+
+
+
+
+
+
+ #Work880-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bf:media
+ bf:Media
+
+
+
+
+
+ bf:carrier
+ bf:Carrier
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Work880-
+ #Instance880-
+
+
+
+
+
+
+
+ #Work
+ #Instance880-
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-ControlSubfields.xsl b/public/xml/marc2bibframe2/ConvSpec-ControlSubfields.xsl
new file mode 100644
index 000000000..8fbc589c8
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-ControlSubfields.xsl
@@ -0,0 +1,222 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Text
+ NotatedMusic
+ NotatedMusic
+ Cartography
+ Cartography
+ MovingImage
+ Audio
+ Audio
+ StillImage
+ MixedMaterial
+ MixedMaterial
+ Object
+ Text
+
+
+
+
+ m
+ s
+ d
+ i
+ m
+ s
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/ConvSpec-LDR.xsl b/public/xml/marc2bibframe2/ConvSpec-LDR.xsl
new file mode 100644
index 000000000..15b1ba763
--- /dev/null
+++ b/public/xml/marc2bibframe2/ConvSpec-LDR.xsl
@@ -0,0 +1,164 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ c
+
+
+
+
+
+
+ c
+
+
+
+
+
+
+ n
+
+
+
+
+
+
+ p
+
+
+
+
+
+
+
+
+ f
+ 1
+ 7
+ 3
+ 4
+ 5
+ 7
+ 8
+ u
+
+
+
+
+
+
+
+
+ aacr
+ isbd
+ isbd
+ aacr
+ aacr
+ unknown
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Text
+ NotatedMusic
+ NotatedMusic
+ Cartography
+ Cartography
+ MovingImage
+ Audio
+ Audio
+ StillImage
+ MixedMaterial
+ MixedMaterial
+ Object
+ Text
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Manuscript
+ Manuscript
+ Electronic
+ Manuscript
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Archival
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/conf/languageCrosswalk.xml b/public/xml/marc2bibframe2/conf/languageCrosswalk.xml
new file mode 100644
index 000000000..05812671f
--- /dev/null
+++ b/public/xml/marc2bibframe2/conf/languageCrosswalk.xml
@@ -0,0 +1,1503 @@
+
+
+
+
+
+
+ aar
+
+
+ abk
+
+
+ ace
+
+
+ ach
+
+
+ ada
+
+
+ ady
+
+
+ afa
+
+
+ afh
+
+
+ afr
+
+
+ ain
+
+
+ aka
+
+
+ akk
+
+
+ sqi
+ alb
+
+
+ ale
+
+
+ alg
+
+
+ alt
+
+
+ amh
+
+
+ ang
+
+
+ anp
+
+
+ apa
+
+
+ ara
+
+
+ arc
+
+
+ arg
+
+
+ hye
+ arm
+
+
+ arn
+
+
+ arp
+
+
+ art
+
+
+ arw
+
+
+ asm
+
+
+ ast
+
+
+ ath
+
+
+ aus
+
+
+ ava
+
+
+ ave
+
+
+ awa
+
+
+ aym
+
+
+ aze
+
+
+ bad
+
+
+ bai
+
+
+ bak
+
+
+ bal
+
+
+ bam
+
+
+ ban
+
+
+ eus
+ baq
+
+
+ bas
+
+
+ bat
+
+
+ bej
+
+
+ bel
+
+
+ bem
+
+
+ ben
+
+
+ ber
+
+
+ bho
+
+
+ bih
+
+
+ bik
+
+
+ bin
+
+
+ bis
+
+
+ bla
+
+
+ bnt
+
+
+ bod
+ tib
+
+
+ bos
+
+
+ bra
+
+
+ bre
+
+
+ btk
+
+
+ bua
+
+
+ bug
+
+
+ bul
+
+
+ mya
+ bur
+
+
+ byn
+
+
+ cad
+
+
+ cai
+
+
+ car
+
+
+ cat
+
+
+ cau
+
+
+ ceb
+
+
+ cel
+
+
+ ces
+ cze
+
+
+ cha
+
+
+ chb
+
+
+ che
+
+
+ chg
+
+
+ zho
+ chi
+
+
+ chk
+
+
+ chm
+
+
+ chn
+
+
+ cho
+
+
+ chp
+
+
+ chr
+
+
+ chu
+
+
+ chv
+
+
+ chy
+
+
+ cmc
+
+
+ cop
+
+
+ cor
+
+
+ cos
+
+
+ cpe
+
+
+ cpf
+
+
+ cpp
+
+
+ cre
+
+
+ crh
+
+
+ crp
+
+
+ csb
+
+
+ cus
+
+
+ cym
+ wel
+
+
+ dak
+
+
+ dan
+
+
+ dar
+
+
+ day
+
+
+ del
+
+
+ den
+
+
+ ger
+ deu
+
+
+ dgr
+
+
+ din
+
+
+ div
+
+
+ doi
+
+
+ dra
+
+
+ dsb
+
+
+ dua
+
+
+ dum
+
+
+ nld
+ dut
+
+
+ dyu
+
+
+ dzo
+
+
+ efi
+
+
+ egy
+
+
+ eka
+
+
+ ell
+ gre
+
+
+ elx
+
+
+ eng
+
+
+ enm
+
+
+ epo
+
+
+ est
+
+
+ ewe
+
+
+ ewo
+
+
+ fan
+
+
+ fao
+
+
+ fas
+ per
+
+
+ fat
+
+
+ fij
+
+
+ fil
+
+
+ fin
+
+
+ fiu
+
+
+ fon
+
+
+ fre
+ fra
+
+
+ frm
+
+
+ fro
+
+
+ frr
+
+
+ frs
+
+
+ fry
+
+
+ ful
+
+
+ fur
+
+
+ gaa
+
+
+ gay
+
+
+ gba
+
+
+ gem
+
+
+ geo
+ kat
+
+
+ gez
+
+
+ gil
+
+
+ gla
+
+
+ gle
+
+
+ glg
+
+
+ glv
+
+
+ gmh
+
+
+ goh
+
+
+ gon
+
+
+ gor
+
+
+ got
+
+
+ grb
+
+
+ grc
+
+
+ grn
+
+
+ gsw
+
+
+ guj
+
+
+ gwi
+
+
+ hai
+
+
+ hat
+
+
+ hau
+
+
+ haw
+
+
+ heb
+
+
+ her
+
+
+ hil
+
+
+ him
+
+
+ hin
+
+
+ hit
+
+
+ hmn
+
+
+ hmo
+
+
+ hrv
+
+
+ hsb
+
+
+ hun
+
+
+ hup
+
+
+ iba
+
+
+ ibo
+
+
+ isl
+ ice
+
+
+ ido
+
+
+ iii
+
+
+ ijo
+
+
+ iku
+
+
+ ile
+
+
+ ilo
+
+
+ ina
+
+
+ inc
+
+
+ ind
+
+
+ ine
+
+
+ inh
+
+
+ ipk
+
+
+ ira
+
+
+ iro
+
+
+ ita
+
+
+ jav
+
+
+ jbo
+
+
+ jpn
+
+
+ jpr
+
+
+ jrb
+
+
+ kaa
+
+
+ kab
+
+
+ kac
+
+
+ kal
+
+
+ kam
+
+
+ kan
+
+
+ kar
+
+
+ kas
+
+
+ kau
+
+
+ kaw
+
+
+ kaz
+
+
+ kbd
+
+
+ kha
+
+
+ khi
+
+
+ khm
+
+
+ kho
+
+
+ kik
+
+
+ kin
+
+
+ kir
+
+
+ kmb
+
+
+ kok
+
+
+ kom
+
+
+ kon
+
+
+ kor
+
+
+ kos
+
+
+ kpe
+
+
+ krc
+
+
+ krl
+
+
+ kro
+
+
+ kru
+
+
+ kua
+
+
+ kum
+
+
+ kur
+
+
+ kut
+
+
+ lad
+
+
+ lah
+
+
+ lam
+
+
+ lao
+
+
+ lat
+
+
+ lav
+
+
+ lez
+
+
+ lim
+
+
+ lin
+
+
+ lit
+
+
+ lol
+
+
+ loz
+
+
+ ltz
+
+
+ lua
+
+
+ lub
+
+
+ lug
+
+
+ lui
+
+
+ lun
+
+
+ luo
+
+
+ lus
+
+
+ mkd
+ mac
+
+
+ mad
+
+
+ mag
+
+
+ mah
+
+
+ mai
+
+
+ mak
+
+
+ mal
+
+
+ man
+
+
+ mri
+ mao
+
+
+ map
+
+
+ mar
+
+
+ mas
+
+
+ msa
+ may
+
+
+ mdf
+
+
+ mdr
+
+
+ men
+
+
+ mga
+
+
+ mic
+
+
+ min
+
+
+ mis
+
+
+ mkh
+
+
+ mlg
+
+
+ mlt
+
+
+ mnc
+
+
+ mni
+
+
+ mno
+
+
+ moh
+
+
+ mon
+
+
+ mos
+
+
+ mul
+
+
+ mun
+
+
+ mus
+
+
+ mwl
+
+
+ mwr
+
+
+ myn
+
+
+ myv
+
+
+ nah
+
+
+ nai
+
+
+ nap
+
+
+ nau
+
+
+ nav
+
+
+ nbl
+
+
+ nde
+
+
+ ndo
+
+
+ nds
+
+
+ nep
+
+
+ new
+
+
+ nia
+
+
+ nic
+
+
+ niu
+
+
+ nno
+
+
+ nob
+
+
+ nog
+
+
+ non
+
+
+ nor
+
+
+ nqo
+
+
+ nso
+
+
+ nub
+
+
+ nwc
+
+
+ nya
+
+
+ nym
+
+
+ nyn
+
+
+ nyo
+
+
+ nzi
+
+
+ oci
+
+
+ oji
+
+
+ ori
+
+
+ orm
+
+
+ osa
+
+
+ oss
+
+
+ ota
+
+
+ oto
+
+
+ paa
+
+
+ pag
+
+
+ pal
+
+
+ pam
+
+
+ pan
+
+
+ pap
+
+
+ pau
+
+
+ peo
+
+
+ phi
+
+
+ phn
+
+
+ pli
+
+
+ pol
+
+
+ pon
+
+
+ por
+
+
+ pra
+
+
+ pro
+
+
+ pus
+
+
+ qaa-qtz
+
+
+ que
+
+
+ raj
+
+
+ rap
+
+
+ rar
+
+
+ roa
+
+
+ roh
+
+
+ rom
+
+
+ ron
+ rum
+
+
+ run
+
+
+ rup
+
+
+ rus
+
+
+ sad
+
+
+ sag
+
+
+ sah
+
+
+ sai
+
+
+ sal
+
+
+ sam
+
+
+ san
+
+
+ sas
+
+
+ sat
+
+
+ scn
+
+
+ sco
+
+
+ sel
+
+
+ sem
+
+
+ sga
+
+
+ sgn
+
+
+ shn
+
+
+ sid
+
+
+ sin
+
+
+ sio
+
+
+ sit
+
+
+ sla
+
+
+ slk
+ slo
+
+
+ slv
+
+
+ sma
+
+
+ sme
+
+
+ smi
+
+
+ smj
+
+
+ smn
+
+
+ smo
+
+
+ sms
+
+
+ sna
+
+
+ snd
+
+
+ snk
+
+
+ sog
+
+
+ som
+
+
+ son
+
+
+ sot
+
+
+ spa
+
+
+ srd
+
+
+ srn
+
+
+ srp
+
+
+ srr
+
+
+ ssa
+
+
+ ssw
+
+
+ suk
+
+
+ sun
+
+
+ sus
+
+
+ sux
+
+
+ swa
+
+
+ swe
+
+
+ syc
+
+
+ syr
+
+
+ tah
+
+
+ tai
+
+
+ tam
+
+
+ tat
+
+
+ tel
+
+
+ tem
+
+
+ ter
+
+
+ tet
+
+
+ tgk
+
+
+ tgl
+
+
+ tha
+
+
+ tig
+
+
+ tir
+
+
+ tiv
+
+
+ tkl
+
+
+ tlh
+
+
+ tli
+
+
+ tmh
+
+
+ tog
+
+
+ ton
+
+
+ tpi
+
+
+ tsi
+
+
+ tsn
+
+
+ tso
+
+
+ tuk
+
+
+ tum
+
+
+ tup
+
+
+ tur
+
+
+ tut
+
+
+ tvl
+
+
+ twi
+
+
+ tyv
+
+
+ udm
+
+
+ uga
+
+
+ uig
+
+
+ ukr
+
+
+ umb
+
+
+ und
+
+
+ urd
+
+
+ uzb
+
+
+ vai
+
+
+ ven
+
+
+ vie
+
+
+ vol
+
+
+ vot
+
+
+ wak
+
+
+ wal
+
+
+ war
+
+
+ was
+
+
+ wen
+
+
+ wln
+
+
+ wol
+
+
+ xal
+
+
+ xho
+
+
+ yao
+
+
+ yap
+
+
+ yid
+
+
+ yor
+
+
+ ypk
+
+
+ zap
+
+
+ zbl
+
+
+ zen
+
+
+ zgh
+
+
+ zha
+
+
+ znd
+
+
+ zul
+
+
+ zun
+
+
+ zxx
+
+
+ zza
+
+
diff --git a/public/xml/marc2bibframe2/conf/subjectThesaurus.xml b/public/xml/marc2bibframe2/conf/subjectThesaurus.xml
new file mode 100644
index 000000000..8c80b0b10
--- /dev/null
+++ b/public/xml/marc2bibframe2/conf/subjectThesaurus.xml
@@ -0,0 +1,30 @@
+
+
+
+
+ lcsh
+ http://id.loc.gov/authorities/subjects
+
+
+ lcshac
+ http://id.loc.gov/authorities/subjects
+ http://id.loc.gov/authorities/childrensSubjects
+
+
+ mesh
+
+
+ nal
+
+
+ cash
+
+
+ rvm
+
+
+
diff --git a/public/xml/marc2bibframe2/marc2bibframe2.xsl b/public/xml/marc2bibframe2/marc2bibframe2.xsl
new file mode 100644
index 000000000..095835495
--- /dev/null
+++ b/public/xml/marc2bibframe2/marc2bibframe2.xsl
@@ -0,0 +1,193 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://id.loc.gov/ontologies/bibframe/
+ http://id.loc.gov/ontologies/bflc/
+ http://id.loc.gov/datatypes/
+ http://www.loc.gov/mads/rdf/v1#
+ http://www.w3.org/2001/XMLSchema#
+
+
+ http://id.loc.gov/vocabulary/carriers/
+ http://id.loc.gov/vocabulary/classSchemes/
+ http://id.loc.gov/vocabulary/contentType/
+ http://id.loc.gov/vocabulary/countries/
+ http://id.loc.gov/authorities/demographicTerms/
+ http://id.loc.gov/vocabulary/descriptionConventions/
+ http://id.loc.gov/authorities/genreForms/
+ http://id.loc.gov/vocabulary/geographicAreas/
+ http://id.loc.gov/vocabulary/graphicMaterials/
+ http://id.loc.gov/vocabulary/issuance/
+ http://id.loc.gov/vocabulary/languages/
+ http://id.loc.gov/vocabulary/marcgt/
+ http://id.loc.gov/vocabulary/mcolor/
+ http://id.loc.gov/vocabulary/mediaType/
+ http://id.loc.gov/vocabulary/mmaterial/
+ http://id.loc.gov/vocabulary/mplayback/
+ http://id.loc.gov/vocabulary/mpolarity/
+ http://id.loc.gov/vocabulary/marcauthen/
+ http://id.loc.gov/vocabulary/marcmuscomp/
+ http://id.loc.gov/vocabulary/organizations/
+ http://id.loc.gov/vocabulary/relators/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #Instance
+
+
+
+
+
+
+
+
+
+ #Instance
+
+
+
+
+
+
+ #Work
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WARNING: Unmatched element:
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/naco-normalize.xsl b/public/xml/marc2bibframe2/naco-normalize.xsl
new file mode 100644
index 000000000..ff842d195
--- /dev/null
+++ b/public/xml/marc2bibframe2/naco-normalize.xsl
@@ -0,0 +1,205 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+ 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+
+ 0
+ 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+
+ AE
+ ae
+ OE
+ oe
+ D
+ d
+ D
+ d
+ I
+ i
+ L
+ l
+ l
+ O
+ o
+ U
+ u
+ O
+ o
+ TH
+ th
+ SS
+ ss
+
+
+
+ abcdefghijklmnopqrstuvwxyzαβγ
+ ABCDEFGHIJKLMNOPQRSTUVWXYZΑΒΓ
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/xml/marc2bibframe2/utils.xsl b/public/xml/marc2bibframe2/utils.xsl
new file mode 100644
index 000000000..358a9fa8c
--- /dev/null
+++ b/public/xml/marc2bibframe2/utils.xsl
@@ -0,0 +1,328 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ arab
+ latn
+ hang
+ hani
+ jpan
+ cyrl
+ grek
+ hebr
+
+
+
+
+
+
+
+
+
+ ABCDEFGHIJKLMNOPQRSTUVWXYZ
+ 0123456789
+
+
+
+
+
+ true
+
+ true
+
+
+ true
+
+
+
+
+
+
+
+
+ .:,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ .:,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ .:,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ a
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WARNING: Unable to determine record ID for record . Using generated ID.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ .:,;/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/spec/controllers/sources_spec.rb b/spec/controllers/sources_spec.rb
new file mode 100644
index 000000000..d1a2a138c
--- /dev/null
+++ b/spec/controllers/sources_spec.rb
@@ -0,0 +1,23 @@
+require 'rails_helper'
+
+RSpec.describe Admin::SourcesController, :type => :controller do
+ render_views
+ before(:each) do
+ @user = FactoryGirl.create(:admin)
+ sign_in @user
+ end
+
+ describe "GET index" do
+ it "read sources index" do
+ get :index
+ expect(response.body).to have_css ("#titlebar_left")
+ end
+ end
+
+ describe "CREATE" do
+ it "creates record" do
+ expect { post :create, :source => FactoryGirl.attributes_for(:source) }.to change(Source, :count).by(1)
+ end
+ end
+
+end
diff --git a/spec/controllers/sru/error_spec.rb b/spec/controllers/sru/error_spec.rb
deleted file mode 100644
index 305c15d1c..000000000
--- a/spec/controllers/sru/error_spec.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-describe SruController, :type => :controller do
- render_views
- context "MaximumRecords should be limited to 100"
- it "returns the error page with limitiation" do
- get "service", {:query => 'Bach', :operation => "searchRetrieve", :maximumRecords => 200}
- doc = Nokogiri::XML(response.body)
- diag = "http://www.loc.gov/zing/srw/diagnostic/"
- max = doc.xpath("//diag:message", "diag" => diag).first.content
- expect(max).to match(/MaximumRecords is limited/)
- end
-end
-
diff --git a/spec/controllers/sru/explain_spec.rb b/spec/controllers/sru/explain_spec.rb
deleted file mode 100644
index 3163f0c76..000000000
--- a/spec/controllers/sru/explain_spec.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-describe SruController, :type => :controller do
- render_views
- context "Default action should return the explain page"
- it "returns the explain page" do
- get "service"
- doc = Nokogiri::XML(response.body)
- namespace="http://explain.z3950.org/dtd/2.0/"
- hostinfo = doc.xpath("//ns:serverInfo/ns:host", "ns" => namespace).first.content
- expect(hostinfo).to be == "beta.rism.info"
- end
-end
-
diff --git a/spec/controllers/sru_spec.rb b/spec/controllers/sru_spec.rb
new file mode 100644
index 000000000..1210606b7
--- /dev/null
+++ b/spec/controllers/sru_spec.rb
@@ -0,0 +1,27 @@
+require 'rails_helper'
+
+RSpec.describe SruController, :type => :controller do
+ render_views
+
+ context "MaximumRecords should be limited to 100" do
+ it "returns the error page with limitiation" do
+ get "service", {:query => 'Bach', :operation => "searchRetrieve", :maximumRecords => 200}
+ doc = Nokogiri::XML(response.body)
+ diag = "http://www.loc.gov/zing/srw/diagnostic/"
+ max = doc.xpath("//diag:message", "diag" => diag).first.content
+ expect(max).to match(/MaximumRecords is limited/)
+ end
+ end
+
+ context "Default action should return the explain page" do
+ it "returns the explain page" do
+ get "service"
+ doc = Nokogiri::XML(response.body)
+ namespace="http://explain.z3950.org/dtd/2.0/"
+ hostinfo = doc.xpath("//ns:serverInfo/ns:host", "ns" => namespace).first.content
+ expect(hostinfo).to be == "beta.rism.info"
+ end
+ end
+
+end
+
diff --git a/spec/controllers/statistics_index_spec.rb b/spec/controllers/statistics_index_spec.rb
new file mode 100644
index 000000000..7874387f4
--- /dev/null
+++ b/spec/controllers/statistics_index_spec.rb
@@ -0,0 +1,15 @@
+require 'rails_helper'
+
+RSpec.describe Admin::StatisticsController, :type => :controller do
+ render_views
+ describe "GET index" do
+ before(:each) do
+ @user = FactoryGirl.create(:admin)
+ sign_in @user
+ end
+ it "read page" do
+ get :index
+ expect(response.body).to have_css ("div#user-table")
+ end
+ end
+end
diff --git a/spec/examples.txt b/spec/examples.txt
new file mode 100644
index 000000000..f06a3be03
--- /dev/null
+++ b/spec/examples.txt
@@ -0,0 +1,26 @@
+example_id | status | run_time |
+---------------------------------------------------------- | ------- | --------------- |
+./spec/controllers/sources_spec.rb[1:1:1] | passed | 1.44 seconds |
+./spec/controllers/sources_spec.rb[1:2:1] | passed | 3.11 seconds |
+./spec/controllers/sru_spec.rb[1:1:1] | passed | 0.5092 seconds |
+./spec/controllers/sru_spec.rb[1:2:1] | passed | 0.08219 seconds |
+./spec/controllers/statistics_index_spec.rb[1:1:1] | passed | 5.62 seconds |
+./spec/features/standard_title/standard_title_spec.rb[1:2] | failed | 3.33 seconds |
+./spec/features/standard_title/standard_title_spec.rb[1:3] | failed | 3.94 seconds |
+./spec/lib/sru_spec.rb[1:1:1:1] | passed | 0.0073 seconds |
+./spec/lib/sru_spec.rb[1:2:1:1] | passed | 0.01565 seconds |
+./spec/lib/sru_spec.rb[1:3:1:1] | passed | 0.00821 seconds |
+./spec/lib/sru_spec.rb[1:4:1:1] | passed | 0.00916 seconds |
+./spec/lib/sru_spec.rb[1:5:1:1] | passed | 0.03107 seconds |
+./spec/lib/sru_spec.rb[1:6:1:1] | passed | 0.02095 seconds |
+./spec/lib/sru_spec.rb[1:7:1:1] | passed | 0.01043 seconds |
+./spec/lib/sru_spec.rb[1:8:1:1] | passed | 0.03931 seconds |
+./spec/lib/sru_spec.rb[1:9:1:1] | passed | 0.01481 seconds |
+./spec/lib/sru_spec.rb[1:10:1:1] | passed | 0.01092 seconds |
+./spec/lib/sru_spec.rb[1:11:1:1] | passed | 0.01329 seconds |
+./spec/lib/sru_spec.rb[1:12:1:1] | passed | 0.08471 seconds |
+./spec/lib/sru_spec.rb[1:13:1] | pending | 0.00001 seconds |
+./spec/mailers/admin_notifications_spec.rb[1:1] | pending | 0.00002 seconds |
+./spec/mailers/comment_notifications_spec.rb[1:1] | pending | 0.00003 seconds |
+./spec/models/institution_spec.rb[1:1:1:1] | passed | 0.00317 seconds |
+./spec/models/workgroup_spec.rb[1:1] | passed | 0.1949 seconds |
diff --git a/spec/features/standard_title/standard_title_spec.rb b/spec/features/standard_title/standard_title_spec.rb
new file mode 100644
index 000000000..973be1e61
--- /dev/null
+++ b/spec/features/standard_title/standard_title_spec.rb
@@ -0,0 +1,30 @@
+require 'rails_helper'
+
+RSpec.describe "StandardTitle", :type => :feature, :js => true do
+ describe "Edit"
+ let(:user) { FactoryGirl.create(:editor) }
+ before do
+ visit user_session_path
+ fill_in :user_email, :with => user.email
+ fill_in :user_password, :with => user.password
+ click_button('Login')
+ end
+
+ it "Standard title title field should not be readonly" do
+ existent_title = FactoryGirl.create(:standard_title)
+ visit edit_admin_standard_title_path(existent_title)
+ expect(page).to have_no_css("#standard_title_title[disabled]")
+ end
+ #This will fail also if the field is disabeled
+ it "Editors should be able to change standard title authority" do
+ existent_title = FactoryGirl.create(:standard_title)
+ new_title = "new title"
+ visit edit_admin_standard_title_path(existent_title)
+ fill_in('standard_title_title', :with => new_title)
+ #page.save_screenshot('public/pg.png', :full => true)
+ expect(find('#standard_title_title').value).to be == new_title
+ end
+
+
+end
+
diff --git a/spec/lib/sru_spec.rb b/spec/lib/sru_spec.rb
index f11bea4e4..a6ed57d5b 100644
--- a/spec/lib/sru_spec.rb
+++ b/spec/lib/sru_spec.rb
@@ -1,4 +1,4 @@
-describe Sru::Query do
+RSpec.describe Sru::Query do
describe "Return all records" do
context "Simple fulltext search with astersik" do
diff --git a/spec/models/institution_spec.rb b/spec/models/institution_spec.rb
index 4a83743f7..55296165b 100644
--- a/spec/models/institution_spec.rb
+++ b/spec/models/institution_spec.rb
@@ -1,4 +1,4 @@
-describe Institution do
+RSpec.describe Institution do
describe "#update_workgroups" do
context "update workgroups should trigger update workgroups after creating new institution with siglum" do
diff --git a/spec/models/workgroup_spec.rb b/spec/models/workgroup_spec.rb
new file mode 100644
index 000000000..b28647f7e
--- /dev/null
+++ b/spec/models/workgroup_spec.rb
@@ -0,0 +1,7 @@
+RSpec.describe "solr result of workgroup total sources" do
+ it "should return solr result set of sources" do
+ ix = Statistics::Workgroup.sources_by_month(Time.now-1.year, Time.now, Workgroup.where(:id => 1))
+ f = Statistics::Spreadsheet.new(ix)
+ expect(f.objects.first.row["2016-10"]).to be == 574
+ end
+end
diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb
new file mode 100644
index 000000000..f6329c859
--- /dev/null
+++ b/spec/rails_helper.rb
@@ -0,0 +1,30 @@
+ENV['RAILS_ENV'] ||= 'development'
+require 'spec_helper'
+require 'rspec/rails'
+require 'capybara/rspec'
+require 'capybara/poltergeist'
+
+Capybara.javascript_driver = :poltergeist
+
+RSpec.configure do |config|
+ config.include Rails.application.routes.url_helpers
+ config.use_transactional_fixtures = true
+ config.include Devise::TestHelpers, :type => :controller
+ config.infer_spec_type_from_file_location!
+ config.include Warden::Test::Helpers
+ config.include Capybara::DSL
+ config.filter_rails_from_backtrace!
+end
+
+class ActiveRecord::Base
+ mattr_accessor :shared_connection
+ @@shared_connection = nil
+
+ def self.connection
+ @@shared_connection || retrieve_connection
+ end
+end
+
+# Forces all threads to share the same connection. This works on
+# # Capybara because it starts the web server in a thread.
+ActiveRecord::Base.shared_connection = ActiveRecord::Base.connection
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 47d53a719..e77f6a886 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,108 +1,28 @@
ENV["RAILS_ENV"] = 'development'
require File.expand_path('../../config/environment', __FILE__)
-# Prevent database truncation if the environment is production
abort("The Rails environment is running in production mode!") if Rails.env.production?
-require 'rspec/rails'
-require 'capybara/rspec'
+Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
-
-# This file was generated by the `rails generate rspec:install` command. Conventionally, all
-# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
-# The generated `.rspec` file contains `--require spec_helper` which will cause
-# this file to always be loaded, without a need to explicitly require it in any
-# files.
-#
-# Given that it is always loaded, you are encouraged to keep this file as
-# light-weight as possible. Requiring heavyweight dependencies from this file
-# will add to the boot time of your test suite on EVERY test run, even for an
-# individual file that may not need all of that loaded. Instead, consider making
-# a separate helper file that requires the additional dependencies and performs
-# the additional setup, and require it from the spec files that actually need
-# it.
-#
-# The `.rspec` file also contains a few flags that are not defaults but that
-# users commonly want.
-#
-# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
- # rspec-expectations config goes here. You can use an alternate
- # assertion/expectation library such as wrong or the stdlib/minitest
- # assertions if you prefer.
config.expect_with :rspec do |expectations|
- # This option will default to `true` in RSpec 4. It makes the `description`
- # and `failure_message` of custom matchers include text for helper methods
- # defined using `chain`, e.g.:
- # be_bigger_than(2).and_smaller_than(4).description
- # # => "be bigger than 2 and smaller than 4"
- # ...rather than:
- # # => "be bigger than 2"
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
end
-
- # rspec-mocks config goes here. You can use an alternate test double
- # library (such as bogus or mocha) by changing the `mock_with` option here.
+ config.expose_dsl_globally = true
config.mock_with :rspec do |mocks|
- # Prevents you from mocking or stubbing a method that does not exist on
- # a real object. This is generally recommended, and will default to
- # `true` in RSpec 4.
mocks.verify_partial_doubles = true
end
-
- # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
- # have no way to turn it off -- the option exists only for backwards
- # compatibility in RSpec 3). It causes shared context metadata to be
- # inherited by the metadata hash of host groups and examples, rather than
- # triggering implicit auto-inclusion in groups with matching metadata.
config.shared_context_metadata_behavior = :apply_to_host_groups
- config.include Devise::TestHelpers, type: :controller
- config.include Rails.application.routes.url_helpers
-# The settings below are suggested to provide a good initial experience
-# with RSpec, but feel free to customize to your heart's content.
-=begin
- # This allows you to limit a spec run to individual examples or groups
- # you care about by tagging them with `:focus` metadata. When nothing
- # is tagged with `:focus`, all examples get run. RSpec also provides
- # aliases for `it`, `describe`, and `context` that include `:focus`
- # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
config.filter_run_when_matching :focus
-
- # Allows RSpec to persist some state between runs in order to support
- # the `--only-failures` and `--next-failure` CLI options. We recommend
- # you configure your source control system to ignore this file.
config.example_status_persistence_file_path = "spec/examples.txt"
-
- # Limits the available syntax to the non-monkey patched syntax that is
- # recommended. For more details, see:
- # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
- # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
- # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
config.disable_monkey_patching!
-
- # Many RSpec users commonly either run the entire suite or an individual
- # file, and it's useful to allow more verbose output when running an
- # individual spec file.
+ config.include FactoryGirl::Syntax::Methods
if config.files_to_run.one?
- # Use the documentation formatter for detailed output,
- # unless a formatter has already been configured
- # (e.g. via a command-line flag).
config.default_formatter = 'doc'
end
-
- # Print the 10 slowest examples and example groups at the
- # end of the spec run, to help surface which specs are running
- # particularly slow.
config.profile_examples = 10
-
- # Run specs in random order to surface order dependencies. If you find an
- # order dependency and want to debug it, you can fix the order by providing
- # the seed, which is printed after each run.
- # --seed 1234
config.order = :random
-
- # Seed global randomization in this process using the `--seed` CLI option.
- # Setting this allows you to use `--seed` to deterministically reproduce
- # test failures related to randomization by passing the same `--seed` value
- # as the one that triggered the failure.
Kernel.srand config.seed
-=end
+ config.color = true
+ config.tty = true
+ config.formatter = :documentation
end
diff --git a/spec/support/factories/source.rb b/spec/support/factories/source.rb
new file mode 100644
index 000000000..9a0f71787
--- /dev/null
+++ b/spec/support/factories/source.rb
@@ -0,0 +1,36 @@
+FactoryGirl.define do
+ factory :source do
+ record_type 2
+ std_title "Il trionfo di Camilla regina de Volsci - Excerpts;..."
+ composer "Bononcini, Giovanni"
+ title "Non son paga d'esser vaga"
+ shelf_mark "Add. 14186"
+ language "Unknown"
+ lib_siglum "GB-Lbl"
+ wf_stage "published"
+ #wf_owner 1
+ marc_source < :user do
+ roles { [ FactoryGirl.create(:admin_role) ] }
+ end
+
+ factory :cataloger, :parent => :user do
+ roles { [ FactoryGirl.create(:cataloger_role) ] }
+ end
+
+ factory :editor, :parent => :user do
+ roles { [ FactoryGirl.create(:editor_role) ] }
+ end
+
+ factory :role do
+ name { "Role_#{rand(9999)}" }
+ end
+
+ factory :admin_role, :parent => :role do
+ name "admin"
+ end
+
+ factory :cataloger_role, :parent => :role do
+ name "cataloger"
+ end
+
+ factory :editor_role, :parent => :role do
+ name "editor"
+ end
+
+end
diff --git a/spec/support/plugins/database_cleaner.rb b/spec/support/plugins/database_cleaner.rb
new file mode 100644
index 000000000..4b95402d0
--- /dev/null
+++ b/spec/support/plugins/database_cleaner.rb
@@ -0,0 +1,22 @@
+RSpec.configure do |config|
+ config.before(:suite) do
+ DatabaseCleaner.clean_with(:transaction)
+ end
+
+ config.before(:each) do
+ DatabaseCleaner.strategy = :transaction
+ end
+
+ config.before(:each, :js => true) do
+ DatabaseCleaner.strategy = :transaction
+ end
+
+ config.before(:each) do
+ DatabaseCleaner.start
+ end
+
+ config.after(:each) do
+ DatabaseCleaner.clean
+ end
+
+end
diff --git a/vendor/assets/stylesheets/muscat.scss b/vendor/assets/stylesheets/muscat.scss
index 733672d6e..3af2c1fc5 100644
--- a/vendor/assets/stylesheets/muscat.scss
+++ b/vendor/assets/stylesheets/muscat.scss
@@ -81,17 +81,27 @@ body.active_admin {
background-color: lighten($primary-color, 20%)
}
+.srutable_wrapper {
+ position:relative;
+ border: 1px;
+ border-style: inset;
+ border-color: #dadad8;
+}
+
+.srutable_scroll {
+ height:640px;
+ overflow:auto;
+}
+
.srutable {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
-
}
.srutable td, .srutable th {
- border: 1px solid #ddd;
+ border: 0px solid #ddd;
padding: 8px;
-
}
.srutable tr:nth-child(even){background-color: #f2f2f2;}
@@ -99,9 +109,50 @@ body.active_admin {
.srutable tr:hover {background-color: #ddd;}
.srutable th {
- padding-top: 12px;
- padding-bottom: 12px;
+ padding-top: 2px;
+ padding-bottom: 2px;
text-align: left;
background-color: $primary-color;
color: white;
}
+.srutable_download{
+ padding: 10px;
+ margin-bottom: 10px;
+}
+//HACK to improve the css obf tabs which is hardcoded in AA
+.tab-content {
+ border: 1px solid #dadad8;
+ padding: 0px;
+ padding-top: 0px;
+}
+.ui-tabs .ui-tabs-panel {
+ border-width: 0;
+ padding: 1em 0em;
+ background-color: #e6e6e6;
+ padding: 5px;
+}
+.ui-widget-content {
+ border: 0px
+}
+
+.ui-tabs-nav li:first-child a {
+ border-top-left-radius: 0px;
+ border-bottom-left-radius: 0px;
+}
+
+.ui-tabs-nav li:last-child a {
+ border-top-right-radius: 0px;
+ border-bottom-right-radius: 0px;
+}
+.ui-widget-header {
+ border: 0px solid #aaaaaa;
+ color: #222222;
+ background: #e6e6e6;
+ font-weight: bold;
+
+}
+.ui-tabs-nav {
+ overflow: hidden;
+}
+
+