E


WorldCat Identities



google.charts.load('current', packages: ['corechart']);
google.charts.setOnLoadCallback(drawChart);
function drawChart()
var options =
height: 200,
legend: position: 'top', maxLines: 3 ,
bar: groupWidth: '75%' ,
isStacked: true,
colors: ['#FF7600', '#409a3c', '#2178b5'],
vAxis:
baselineColor: '#fff',
gridlineColor: '#fff',
textPosition: 'none'

;
var data = google.visualization.arrayToDataTable([
['', 'By', 'Posthumously by', 'About',
role: 'annotation' ],

['1800-1803', 0, 0, 0, ''],

['1803-1806', 0, 0, 0, ''],

['1806-1809', 5, 0, 0, ''],

['1809-1812', 0, 0, 0, ''],

['1812-1815', 0, 0, 0, ''],

['1815-1818', 0, 0, 0, ''],

['1818-1821', 0, 0, 0, ''],

['1821-1824', 0, 0, 0, ''],

['1824-1827', 0, 0, 0, ''],

['1827-1830', 0, 0, 0, ''],

['1830-1833', 0, 0, 0, ''],

['1833-1836', 0, 0, 0, ''],

['1836-1839', 0, 0, 0, ''],

['1839-1842', 0, 0, 0, ''],

['1842-1845', 0, 0, 0, ''],

['1845-1848', 0, 0, 0, ''],

['1848-1851', 10, 0, 0, ''],

['1851-1854', 0, 0, 0, ''],

['1854-1857', 0, 0, 0, ''],

['1857-1860', 0, 0, 0, ''],

['1860-1863', 0, 0, 0, ''],

['1863-1866', 5, 0, 0, ''],

['1866-1869', 0, 0, 0, ''],

['1869-1872', 0, 0, 0, ''],

['1872-1875', 0, 0, 0, ''],

['1875-1878', 0, 0, 0, ''],

['1878-1881', 0, 0, 0, ''],

['1881-1884', 0, 0, 0, ''],

['1884-1887', 0, 0, 0, ''],

['1887-1890', 0, 0, 0, ''],

['1890-1893', 0, 0, 0, ''],

['1893-1896', 0, 0, 0, ''],

['1896-1899', 0, 0, 0, ''],

['1899-1902', 0, 0, 0, ''],

['1902-1905', 0, 0, 0, ''],

['1905-1908', 0, 0, 0, ''],

['1908-1911', 0, 0, 0, ''],

['1911-1914', 0, 0, 0, ''],

['1914-1917', 0, 0, 0, ''],

['1917-1920', 0, 0, 0, ''],

['1920-1923', 0, 0, 0, ''],

['1923-1926', 0, 0, 0, ''],

['1926-1929', 0, 0, 0, ''],

['1929-1932', 0, 0, 0, ''],

['1932-1935', 0, 0, 0, ''],

['1935-1938', 0, 0, 0, ''],

['1938-1941', 0, 0, 0, ''],

['1941-1944', 0, 0, 0, ''],

['1944-1947', 0, 0, 0, ''],

['1947-1950', 0, 0, 0, ''],

['1950-1953', 0, 0, 0, ''],

['1953-1956', 0, 0, 0, ''],

['1956-1959', 5, 0, 0, ''],

['1959-1962', 0, 0, 0, ''],

['1962-1965', 0, 0, 0, ''],

['1965-1968', 0, 0, 0, ''],

['1968-1971', 0, 0, 0, ''],

['1971-1974', 0, 0, 0, ''],

['1974-1977', 0, 0, 0, ''],

['1977-1980', 0, 0, 0, ''],

['1980-1983', 0, 0, 0, ''],

['1983-1986', 5, 0, 0, ''],

['1986-1989', 10, 0, 0, ''],

['1989-1992', 5, 0, 0, ''],

['1992-1995', 10, 0, 0, ''],

['1995-1998', 0, 0, 0, ''],

['1998-2001', 10, 0, 0, ''],

['2001-2004', 5, 0, 0, ''],

['2004-2007', 0, 0, 0, ''],

['2007-2010', 5, 0, 0, ''],

['2010-2013', 0, 0, 0, ''],

['2013-2016', 5, 0, 0, ''],

['2016-2019', 0, 0, 0, ''],

['2019-2022', 0, 0, 0, ''],

['2022-2025', 0, 0, 0, ''],

]);
var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
;

function bringBack(sourceKey, targetKey, oclcNum)
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null)
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+targetKey+"&comment="+comment;


function sendBack(sourceKey, targetKey, oclcNum)
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null)
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+sourceKey+"&comment="+comment;


function getElementsByClassName(classname, node)
if(!node)
node = document.getElementsByTagName("body")[0];
var a=;
var re=new RegExp('\b' + classname + '\b');
var els=node.getElementsByTagName("*");

for(var i=0; els.length>=i; i++)
if(re.test(els[i].className))
a.push(els[i]);
return a;

function turnEditEntriesOn(node)
var entries=getElementsByClassName('editEntry', node);
if (entries)

for (var i = 0; entries.length>=i; i++)
entries[i].style.display="block";


document.getElementById('identitiesonSwitch').style.display='none';
document.getElementById('identitiesoffSwitch').style.display='inline';

function turnEditEntriesOff(node)
var entries=getElementsByClassName('editEntry', node);
if (entries)
for (var i = 0; entries.length>=i; i++)
entries[i].style.display="none";


document.getElementById('identitiesonSwitch').style.display='inline';
document.getElementById('identitiesoffSwitch').style.display='none';




E



Overview









Works: 25
works in
34
publications in
4
languages and
158
library holdings

Genres:
Interviews 
Documentary television programs 
Nonfiction television programs 
Documentary films 
Biography 
Periodicals 

Roles:
Publisher, Instrumentalist, Musician
Classifications: PN2308.L46,
792.0233092


Publication Timeline

.



Most widely held works by
E


Contributions directes : taxe progressive sur les revenus(

)

7
editions published

in
1848
in
French
and held by
135 WorldCat member

libraries

worldwide



The experience of taking a step into someone's dreams special Logic Trance edit(
Recording
)


in
Undetermined
and held by
2 WorldCat member

libraries

worldwide



Diavoleria by Alekseĭ Remizov(
Book
)

1
edition published

in
1986
in
Undetermined
and held by
2 WorldCat member

libraries

worldwide



Numismatique(
Book
)

1
edition published

in
1992
in
Undetermined
and held by
1 WorldCat member

library

worldwide



Tentamen medicum inaugurale de veneno syphilitico : quod ... ex auctoritate ... D. Georgii Baird ... pro gradu doctoris ... by Rosamond Richardson(
Book
)

1
edition published

in
1807
in
Latin
and held by
1 WorldCat member

library

worldwide



Fra 1840 til 1860 : om Danmarks Næringsbrug by E(
Book
)

1
edition published

in
1863
in
Undetermined
and held by
1 WorldCat member

library

worldwide



Tees Valley structure plan : annual monitoring report by E(

)


in
English
and held by
1 WorldCat member

library

worldwide



Driving my 300 M(
Recording
)

1
edition published

in
2001
in
German
and held by
1 WorldCat member

library

worldwide



Dessins, sculptures, tableaux modernes by Drouot(
Book
)

1
edition published

in
2003
in
Undetermined
and held by
1 WorldCat member

library

worldwide



Contribution à l' étude de l' atoll de Tikehau (Archipel des Tuamotu - Polynésie française) by E(
Book
)

1
edition published

in
1985
in
French
and held by
1 WorldCat member

library

worldwide




Contributions directes taxe progressive sur les revenus : suppression des 4 contributions directes aujourd'hui existantes
et remplacement par une taxe progressive unique dite taxe áa deux degrâes sur le revenu net des propriâetâes immobiliáeres
(

)

1
edition published

in
1848
in
French
and held by
1 WorldCat member

library

worldwide



Estampes, tableaux, dessins, verreries Lalique, objets d'art by Drouot(
Book
)

1
edition published

in
1990
in
French
and held by
1 WorldCat member

library

worldwide



Tableaux anciens, objets d'art et ameublement XVIIIème(
Book
)

1
edition published

in
1998
in
French
and held by
1 WorldCat member

library

worldwide



Monnaies, ordres et décorations by Drouot(
Book
)

1
edition published

in
1991
in
French
and held by
1 WorldCat member

library

worldwide



WING-nano. DE 2009 : Werkstoff- und Nanotechnologien: "Rohstoff" für Innovationen ; 1.-3. April 2009 in Ulm ; Tagungsband
; Ideen zünden! Die Hightech-Strategie für Deutschland
(
Book
)

1
edition published

in
2009
in
German
and held by
1 WorldCat member

library

worldwide



Alle tiders ABC 30 sjove og lærerige sange om alle alfabetets bogstaver by Thorstein Thomsen(
Recording
)

2
editions published

in
1994
in
Undetermined
and held by
1 WorldCat member

library

worldwide



Minutes and Reports by Evangelical Lutheran Joint Synod of Ohio and Other States(

)


in
English
and held by
1 WorldCat member

library

worldwide

Minutes in bound formats, in English, containing district roll, president's report (including ordinations, dismissals, and
deaths), doctrinal discussions, committee reports, and parochial reports



Eugène Ysaÿe - 6 Violin sonatas Op. 27(
Recording
)

2
editions published

in
1988
in
Undetermined
and held by
1 WorldCat member

library

worldwide



Les 7 paroles de Robert Lepage by Michel Duchesne(
Visual
)

1
edition published

in
2000
in
French
and held by
1 WorldCat member

library

worldwide

Robert Lepage, an innovative director and playwright who sees a written play as something to be modified freely by actors
and directors together, discusses how he works with actors and other members of his troupe. Actors rehearsing his play The
Seven Streams of the River Otha share their impressions of how their work has evolved. Throughout, footage of Lepage's plays
illustrates and complements the interviews



Dessins, tableaux, porcelaines, sièges, lustres by Drouot(
Book
)

1
edition published

in
1989
in
Undetermined
and held by
1 WorldCat member

library

worldwide




 

moreShow More Titles

fewerShow Fewer Titles




Audience Level









0

Audience Level


1
  Kids General Special  

Audience level:
0.70
(from
0.53
for
Les 7 paro
... to
0.99
for
The experi
...)




WorldCat IdentitiesRelated Identities


  • Drouot plus


  • A plus


  • De_Ferrante, Luisa plus


  • Rémizov, Aleksej Mihajlovič Author plus


  • I plus


  • C plus


  • X Collector plus


  • Making of the Modern World - York University plus


  • Tees Valley Joint Strategy Unit plus


  • Y plus




Associated Subjects


Actors Canada Dramatists, Canadian Economic history Energy industries England--Tees River Valley France Housing Lepage, Robert, Lutheran Church Medicine Motion picture producers and directors Nature conservation Québec Recreation industry Refuse disposal industry Revenue Taxation Theater Theater--Production and direction Theatrical producers and directors Transportation




Alternative Names


E (band) Czech experimental rock band

E! Canadian TV channel

E! European television channel

E! kanadischer TV-Sender

Éčko (hudební skupina)

スター


Languages


French
(13)

German
(2)

English
(2)

Latin
(1)









(function(i,s,o,g,r,a,m)i['GoogleAnalyticsObject']=r;i[r]=i[r])(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-45070317-1', 'worldcat.org');
ga('send', 'pageview');


setTimeout(function()var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/0018/3695.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b), 1);

Popular posts from this blog

Identifying “long and narrow” polygons in with PostGISlength and width of polygonWhy postgis st_overlaps reports Qgis' “avoid intersections” generated polygon as overlapping with others?Adjusting polygons to boundary and filling holesDrawing polygons with fixed area?How to remove spikes in Polygons with PostGISDeleting sliver polygons after difference operation in QGIS?Snapping boundaries in PostGISSplit polygon into parts adding attributes based on underlying polygon in QGISSplitting overlap between polygons and assign to nearest polygon using PostGIS?Expanding polygons and clipping at midpoint?Removing Intersection of Buffers in Same Layers

Masuk log Menu navigasi

อาณาจักร (ชีววิทยา) ดูเพิ่ม อ้างอิง รายการเลือกการนำทาง10.1086/39456810.5962/bhl.title.447410.1126/science.163.3863.150576276010.1007/BF01796092408502"Phylogenetic structure of the prokaryotic domain: the primary kingdoms"10.1073/pnas.74.11.5088432104270744"Towards a natural system of organisms: proposal for the domains Archaea, Bacteria, and Eucarya"1990PNAS...87.4576W10.1073/pnas.87.12.4576541592112744PubMedJump the queueexpand by handPubMedJump the queueexpand by handPubMedJump the queueexpand by hand"A revised six-kingdom system of life"10.1111/j.1469-185X.1998.tb00030.x9809012"Only six kingdoms of life"10.1098/rspb.2004.2705169172415306349"Kingdoms Protozoa and Chromista and the eozoan root of the eukaryotic tree"10.1098/rsbl.2009.0948288006020031978เพิ่มข้อมูล